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;} |
Managed Extensions for C++ | |
---|
public: __property int[] get_Mask();
public: __property void set_Mask(
int[] value
); |
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
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