ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFBasArray Class / Get Method
Index of an element to get. The first element in an array has an index of zero.




In This Topic
    Get Method (ImGearPDFBasArray)
    In This Topic
    Gets the specified element from an array.
    Syntax
    'Declaration
     
    Public Function Get( _
       ByVal index As UInteger _
    ) As ImGearPDFBasObj
    'Usage
     
    Dim instance As ImGearPDFBasArray
    Dim index As UInteger
    Dim value As ImGearPDFBasObj
     
    value = instance.Get(index)
    public ImGearPDFBasObj Get( 
       uint index
    )
    public: ImGearPDFBasObj* Get( 
       uint index
    ) 
    public:
    ImGearPDFBasObj^ Get( 
       uint index
    ) 

    Parameters

    index
    Index of an element to get. The first element in an array has an index of zero.

    Return Value

    The basic object occupying the Index element of array. Returns Null object if index is outside the array bounds.
    See Also