Gets or sets the position of the end bit.
Syntax
Visual Basic (Declaration) | |
---|
Public Property SourceHighBit As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As ShiftDataCommand
Dim value As Integer
instance.SourceHighBit = value
value = instance.SourceHighBit
|
C# | |
---|
public int SourceHighBit {get; set;} |
Managed Extensions for C++ | |
---|
public: __property int get_SourceHighBit();
public: __property void set_SourceHighBit(
int value
); |
C++/CLI | |
---|
public:
property int SourceHighBit {
int get();
void set (int value);
} |
Return Value
Position of the end bit. 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