←Select platform

Combine Property

Summary

Gets or sets a flag which tells how to color the output pixels.

Syntax

C#
VB
WinRT C#
C++
public bool Combine { get; set; } 
Public Property Combine As Boolean 
public bool Combine {get; set;} 
 <br/>get_Combine();<br/>set_Combine(value);<br/>Object.defineProperty('Combine');  
public: 
property bool Combine { 
   bool get(); 
   void set (    bool ); 
} 

Property Value

A flag which tells how to color the output pixels:

  1. 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.
  2. 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.
Example

Refer to SelectDataCommand.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly