Example #1
0
 public void onAfterPasteBase(MMEventArgs aArgs)
 {
     try
     {
         onAfterPaste(aArgs);
     }
     catch { }
 }
Example #2
0
 public void onAfterDocumentOpenedBase(MMEventArgs aArgs)
 {
     try
     {
         onDocumentOpened(aArgs);
     }
     catch { }
 }
Example #3
0
 public void onBeforeObjectRemovedBase(MMEventArgs aArgs)
 {
     try
     {
         onBeforeObjectRemoved(aArgs);
     }
     catch { }
 }
Example #4
0
 public void onAfterObjectAddedBase(MMEventArgs aArgs)
 {
     try
     {
         onObjectAdded(aArgs);
     }
     catch { }
 }
Example #5
0
 public void onAfterDocumentDeactivatedBase(MMEventArgs aArgs)
 {
     try
     {
         onDocumentDeactivated(aArgs);
     }
     catch { }
 }
Example #6
0
 public void onBeforeDocumentClipboardDropBase(MMEventArgs aArgs)
 {
     try
     {
         onDocumentClipboardDrop(aArgs);
     }
     catch { }
 }
Example #7
0
 public void onBeforeDocumentSavedBase(MMEventArgs aArgs)
 {
     try
     {
         onBeforeDocumentSaved(aArgs);
     }
     catch { }
 }
Example #8
0
 public virtual bool onKeyDown(MMEventArgs aArgs)
 {
     return(false);
 }
Example #9
0
 public virtual void onBeforeObjectRemoved(MMEventArgs aArgs)
 {
 }
Example #10
0
 public virtual void onObjectAdded(MMEventArgs aArgs)
 {
 }
Example #11
0
 public virtual void onObjectChanged(MMEventArgs aArgs)
 {
 }
Example #12
0
 public virtual void onDocumentClosed(MMEventArgs aArgs)
 {
 }
Example #13
0
 public virtual bool onSysKeyUp(MMEventArgs aArgs)
 {
     return(false);
 }
Example #14
0
 public virtual void onAfterPaste(MMEventArgs aArgs)
 {
 }
Example #15
0
 public virtual void onDocumentClipboardPaste(MMEventArgs aArgs)
 {
 }
Example #16
0
 public virtual void onDocumentDeactivated(MMEventArgs aArgs)
 {
 }
Example #17
0
 public virtual void onBeforeDocumentSaved(MMEventArgs aArgs)
 {
 }
Example #18
0
 public virtual void onDocumentOpened(MMEventArgs aArgs)
 {
 }
Example #19
0
 public virtual void onDocumentClipboardDrop(MMEventArgs aArgs)
 {
 }