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



Gets or sets the lookup table that identifies which values in the HueTable, SaturationTable and ValueTable properties are valid.

Syntax

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

Return Value

Lookup table that identifies which values in the HueTable, SaturationTable and ValueTable properties are valid. If Mask[i] is non-zero, then the HueTable, SaturationTable and ValueTable properties are to be used. If Mask[i] is 0 then the HueTable, SaturationTable and ValueTable properties are ignored. If Mask is null, all entries in the HueTable, SaturationTable and ValueTable properties are used.

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