Gets or sets a flag which tells how to color the output pixels.
public bool Combine {get; set;}
'Declaration
Public Property Combine As Boolean
'Usage
Dim instance As SelectDataCommand
Dim value As Boolean
instance.Combine = value
value = instance.Combine
public bool Combine {get; set;}
get_Combine();
set_Combine(value);
public:
property bool Combine {
bool get();
void set ( bool value);
}
Property Value
A flag which tells how to color the output pixels:
- Pixels with values greater than or equal to the threshold value are set to Color (if Combine is set to false) or AND-ed with Color (if Combine is true). In this case, the source pixel is first converted to grayscale 24-bit and then AND-ed with Color.
- Pixels with values less than the threshold value are set to black (if Combine is set to false) or the RGB pixel value will be the same as the high byte source pixel value (if Combine is true). That is R = G = B = High byte values of the source pixel.
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2