Leadtools.ImageProcessing.Color Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
ValueTable Property
See Also 



Gets or sets the value look up table.

Syntax

Visual Basic (Declaration) 
Public Property ValueTable As Integer()
Visual Basic (Usage)Copy Code
Dim instance As RemapHueCommand
Dim value() As Integer
 
instance.ValueTable = value
 
value = instance.ValueTable
C# 
public int[] ValueTable {get; set;}
C++/CLI 
public:
property array<int>^ ValueTable {
   array<int>^ get();
   void set (intarray<value>^ value);
}

Return Value

Value look up table. If the Mask table value for a particular pixel hue is non-zero, then the value is changed to the corresponding entry in ValueTable. For example, if a pixel value has a hue of 85 and Mask[85] is non-zero, the value is changed to ValueTable[85]. If HueTable is null, the value is changed to ValueTable[85]. If ValueTable is null, the value of each pixel is unchanged.

Example

Refer to RemapHueCommand

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also