ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Processing.Layers Namespace / ImGearLayerArray Class / Item Property
The indexed element.




In This Topic
    Item Property (ImGearLayerArray)
    In This Topic
    Specifies a reference to the indexed element of array.
    Syntax
    'Declaration
     
    Public Overridable Default Property Item( _
       ByVal index As Integer _
    ) As ImGearLayer
    'Usage
     
    Dim instance As ImGearLayerArray
    Dim index As Integer
    Dim value As ImGearLayer
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    public virtual ImGearLayer this[ 
       int index
    ]; {get; set;}
    public: __property virtual ImGearLayer* get_Item   int index
    ;
    public: __property virtual void set_Item   int index,
       ImGearLayer* value
    ;
    public:
    virtual property ImGearLayer^ default [int] {
       ImGearLayer^ get(int index);
       void set (int indexImGearLayer^ value);
    }

    Parameters

    index
    The indexed element.

    Property Value

    ImGearLayer class object.
    See Also