Beispiel #1
0
 public override DockablePlugin FindPluginOfType(Type type)
 {
     if (EditorPlugin.GetType() == type)
     {
         return(this);
     }
     return(null);
 }
Beispiel #2
0
 public override bool ClosePluginOfType(Type type)
 {
     if (EditorPlugin.GetType() == type)
     {
         Close();
         return(true);
     }
     return(false);
 }