Returns if the modified flag is set.
None.
Returns true if the modified flag is set, and false otherwise.
First get a reference to the client-side editor:
var editor = $find('<%= Editor.ClientID %>');
Then use it to check the modified flag:
var modified = editor.IsModified();