コード例 #1
0
 private void raise_OnElementColShapeLeave(Element sender, ColShape colShape, bool matchingDimension)
 {
     if (this.OnElementColShapeLeave != null)
     {
         this.OnElementColShapeLeave(sender, new ElementColShapeEventArgs(this, colShape, matchingDimension));
     }
 }
コード例 #2
0
 public extern bool IsWithinColShape(ColShape colshape);
コード例 #3
0
ファイル: Element.cs プロジェクト: Kernell/mta-mono-lib
 public bool IsWithinColShape(ColShape colshape)
 {
     return(Native.Element.IsWithinColShape(this.userdata, colshape.GetUserData()));
 }