Ejemplo n.º 1
0
 private void raise_OnElementColShapeLeave(Element sender, ColShape colShape, bool matchingDimension)
 {
     if (this.OnElementColShapeLeave != null)
     {
         this.OnElementColShapeLeave(sender, new ElementColShapeEventArgs(this, colShape, matchingDimension));
     }
 }
Ejemplo n.º 2
0
 public extern bool IsWithinColShape(ColShape colshape);
Ejemplo n.º 3
0
 public bool IsWithinColShape(ColShape colshape)
 {
     return(Native.Element.IsWithinColShape(this.userdata, colshape.GetUserData()));
 }