LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
SourceHighBit Property
See Also 
Leadtools.ImageProcessing.Core Namespace > SelectDataCommand Class : SourceHighBit Property



Gets or sets the position of the end bit that will construct the mask.

Syntax

Visual Basic (Declaration) 
Public Property SourceHighBit As Integer
Visual Basic (Usage)Copy Code
Dim instance As SelectDataCommand
Dim value As Integer
 
instance.SourceHighBit = value
 
value = instance.SourceHighBit
C# 
public int SourceHighBit {get; set;}
C++/CLI 
public:
property int SourceHighBit {
   int get();
   void set (    int value);
}

Property Value

Position of the end bit that will construct the mask. This is inclusive (it is part of the mask). The value should not be less than SourceLowBit. You can also set -1, which is interpreted as "highest bit" (SourceImage->BitsPerPixel - 1). This property only accepts positive values.

Example

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also