Gets or sets the saturation look up table.
Syntax
Visual Basic (Declaration) | |
---|
Public Property SaturationTable As Integer() |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As RemapHueCommand
Dim value() As Integer
instance.SaturationTable = value
value = instance.SaturationTable
|
C# | |
---|
public int[] SaturationTable {get; set;} |
Managed Extensions for C++ | |
---|
public: __property int[] get_SaturationTable();
public: __property void set_SaturationTable(
int[] value
); |
C++/CLI | |
---|
public:
property array<int> SaturationTable {
array<int> get();
void set (intarray<value> value);
} |
Return Value
Saturation look up table. If the Mask table value for a particular pixel hue is non-zero, then the saturation is changed to the corresponding entry in the SaturationTable property. For example, if a pixel value has a hue of 85 and Mask[85] is non-zero, the saturation is changed to SaturationTable[85]. If HueTable is null, the saturation is changed to SaturationTable[85]. If SaturationTable is null, the saturation of each pixel is unchanged.
Example
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