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