Example #1
0
 public void RemoveChild(VdsGeometry shape)
 {
     RemoveChildInternal(this.NativeHandle, shape.NativeHandle);
     _childGeometryList.Remove(shape);
 }
Example #2
0
 public bool ContainsChild(VdsGeometry child)
 {
     return(_childGeometryList.Contains(child));
 }
Example #3
0
 public void AddChild(VdsGeometry shape)
 {
     AddChildInternal(this.NativeHandle, shape.NativeHandle);
     _childGeometryList.Add(shape);
 }