ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEClip Class / AddElement Method
The index after which to add Element. Use BEFORE_FIRST to insert an element at the beginning of the clip object.
The element added, which may be a PDE Path, a PDE Text, a PDE Container, a PDE Group or a PDE Place object.




In This Topic
    AddElement Method (ImGearPDEClip)
    In This Topic
    Adds an element to a clip path.
    Syntax
    'Declaration
     
    Public Sub AddElement( _
       ByVal precedingIndex As Integer, _
       ByVal element As ImGearPDEElement _
    ) 
    'Usage
     
    Dim instance As ImGearPDEClip
    Dim precedingIndex As Integer
    Dim element As ImGearPDEElement
     
    instance.AddElement(precedingIndex, element)
    public void AddElement( 
       int precedingIndex,
       ImGearPDEElement element
    )
    public: void AddElement( 
       int precedingIndex,
       ImGearPDEElement* element
    ) 
    public:
    void AddElement( 
       int precedingIndex,
       ImGearPDEElement^ element
    ) 

    Parameters

    precedingIndex
    The index after which to add Element. Use BEFORE_FIRST to insert an element at the beginning of the clip object.
    element
    The element added, which may be a PDE Path, a PDE Text, a PDE Container, a PDE Group or a PDE Place object.
    See Also