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