|
Param |
Method |
Event |
|
|
IsDirtyChecks if the content of the current document has been changed.
SyntaxHRESULT IsDirty();
ParametersNone
Return Values
RemarksFor this method to be called successfully, it must be called after the Main class is called and the editor is loaded.
Sample CodeVBScript var object = new NamoSE("test");
object.editorStart();
Var info = object.IsDirty();
if(info)
{
alert("The document has been modified.");
}
else
{
alert("The document has not been modified.");
}
|