ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearDocumentPageArray Class / Item Property
Index of the page to get or set.




In This Topic
    Item Property (ImGearDocumentPageArray)
    In This Topic
    Gets or sets the page at the specified index.
    Syntax
    'Declaration
     
    Public Overridable Default Property Item( _
       ByVal index As Integer _
    ) As ImGearPage
    'Usage
     
    Dim instance As ImGearDocumentPageArray
    Dim index As Integer
    Dim value As ImGearPage
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    public virtual ImGearPage this[ 
       int index
    ]; {get; set;}
    public: __property virtual ImGearPage* get_Item   int index
    ;
    public: __property virtual void set_Item   int index,
       ImGearPage* value
    ;
    public:
    virtual property ImGearPage^ default [int] {
       ImGearPage^ get(int index);
       void set (int indexImGearPage^ value);
    }

    Parameters

    index
    Index of the page to get or set.

    Property Value

    ImGearPage class object.
    See Also