Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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);
}

Return 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: 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