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




In This Topic
    Item Property (ImGearMetadataNodeList)
    In This Topic
    Provides access to single node within the node list.
    Syntax
    'Declaration
     
    Public Default Property Item( _
       ByVal index As Integer _
    ) As ImGearMetadataNode
    'Usage
     
    Dim instance As ImGearMetadataNodeList
    Dim index As Integer
    Dim value As ImGearMetadataNode
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    public ImGearMetadataNode this[ 
       int index
    ]; {get; set;}
    public: __property ImGearMetadataNode* get_Item   int index
    ;
    public: __property void set_Item   int index,
       ImGearMetadataNode* value
    ;
    public:
    property ImGearMetadataNode^ default [int] {
       ImGearMetadataNode^ get(int index);
       void set (int indexImGearMetadataNode^ value);
    }

    Parameters

    index
    Index of the node to get or set.

    Property Value

    ImGearMetadataNode class object.
    See Also