Beispiel #1
0
 public void ExecuteCommand(NoteEditorCommand command)
 {
     htmlDoc.execCommand(command.Value);
 }
Beispiel #2
0
 public bool QueryCommandState(NoteEditorCommand command)
 {
     return(htmlDoc.queryCommandState(command.Value));
 }
Beispiel #3
0
 public bool CanExecuteCommand(NoteEditorCommand command)
 {
     return(htmlDoc.queryCommandEnabled(command.Value));
 }
Beispiel #4
0
 public void ExecuteCommand(NoteEditorCommand command)
 {
     htmlDoc.execCommand(command.Value);
 }
Beispiel #5
0
 public bool QueryCommandState(NoteEditorCommand command)
 {
     return htmlDoc.queryCommandState(command.Value);
 }
Beispiel #6
0
 public bool CanExecuteCommand(NoteEditorCommand command)
 {
     return htmlDoc.queryCommandEnabled(command.Value);
 }