ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearFullLUT Class / Item Property / Item(Int64) Property
Index of the LUT to get.




In This Topic
    Item(Int64) Property
    In This Topic
    Returns LUT output value corresponding to Int64 input value.
    Syntax
    'Declaration
     
    Public Overloads Overrides Property Item( _
       ByVal index As Long _
    ) As Long
    'Usage
     
    Dim instance As ImGearFullLUT
    Dim index As Long
    Dim value As Long
     
    instance.Item(index) = value
     
    value = instance.Item(index)
    public override long Item( 
       long index
    ) {get; set;}
    public: __property long get_Item( 
       long index
    ) override;
    public: __property void set_Item( 
       long index,
       long value
    ) override;
    public:
    property int64 Item {
       int64 get(int64 index) override;
       void set (int64 indexint64 value) override;
    }

    Parameters

    index
    Index of the LUT to get.

    Property Value

    Long number.
    See Also