ImageGear .NET v25.2 - Updated
ImageGear.Art Assembly / ImageGear.ART Namespace / ImGearARTFilledPolygon Class / RemovePoints Method
The index of the first point to remove.
The number of points to remove.




In This Topic
    RemovePoints Method (ImGearARTFilledPolygon)
    In This Topic
    Removes the specified number of points, starting at the specified index.
    Syntax
    'Declaration
     
    Public Sub RemovePoints( _
       ByVal index As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    Dim instance As ImGearARTFilledPolygon
    Dim index As Integer
    Dim count As Integer
     
    instance.RemovePoints(index, count)
    public void RemovePoints( 
       int index,
       int count
    )
    public: void RemovePoints( 
       int index,
       int count
    ) 
    public:
    void RemovePoints( 
       int index,
       int count
    ) 

    Parameters

    index
    The index of the first point to remove.
    count
    The number of points to remove.
    Remarks
    An error will occur if the specified index or specified number of points to remove is out of range.
    See Also