ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDFDocumentPageArray Class / Item Property
Page index.




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

    Parameters

    index
    Page index.
    Remarks
    This is the indexed property for accessing the individual page from the document.
    See Also