public bool OnDrop(esriCmdBarType barType)
 {
   return true;
 }
 bool IToolControl.OnDrop(esriCmdBarType barType)
 {
     OnDocumentSession(); //Initialize the font
     return(true);
 }
 public bool OnDrop(esriCmdBarType barType)
 {
     return(true);
 }
Ejemplo n.º 4
0
 public bool OnDrop(esriCmdBarType barType)
 {
     return(true);
     //throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 public bool OnDrop(esriCmdBarType barType)
 {
     // allow drop onto a toolbar only
     if(barType == esriCmdBarType.esriCmdBarTypeToolbar)
         return true;
     else
         return false;
 }
 bool IToolControl.OnDrop(esriCmdBarType barType)
 {
     OnDocumentSession(); //Initialize the font 
     return true;
 }