|
Param |
Method |
Event |
|
|
GetDocumentSizev1.1 or higher현재 편집 중인 문서의 크기를 구하여 byte 단위로 얻어옵니다. 이때 현재 문서에 포함된 이미지와 파일의 크기까지 합산됩니다.
Return Values
Sample Codesvar CrossEditor = new NamoSE("test");
CrossEditor.EditorStart();
function OnInitCompleted(e) {
var info = CrossEditor.GetDocumentSize();
alert(info);
}
|