Exemplo n.º 1
0
 internal GeometryEditEventArgs(Feature feature , GeometryEditAction action)
 {
     Feature = feature;
     Action = action;
 }
Exemplo n.º 2
0
 private void OnGeometryEdit(Feature f , GeometryEditAction action)
 {
     if (GeometryEdit != null)
     {
         GeometryEdit(this , new GeometryEditEventArgs(f , action));
     }
 }