LEADTOOLS Image Processing (Leadtools.ImageProcessing.Color assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
Mask Property
See Also 



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

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 (    array<int>^ value);
}

Property 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: Silverlight, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also