ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMultichannelLUT Class / Item Property
Index of the LUT to get.




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

    Parameters

    index
    Index of the LUT to get.

    Property Value

    ImGearLUT class object.
    See Also