ImageGear .NET v25.2 - Updated
Item(Int64) Property




ImageGear.Core Assembly > ImageGear.Core Namespace > ImGearLinearLUT Class > Item Property : Item(Int64) Property
Index of the LUT to get.
Gets or sets 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 ImGearLinearLUT
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.
Remarks
LUT output value the formula is: result = input_value * Slope + Intercept + 0.5.

Set accessor throws exception, because such operation is invalid for this type of LUT.

See Also

Reference

ImGearLinearLUT Class
ImGearLinearLUT Members
Overload List

Is this page helpful?
Yes No
Thanks for your feedback.