Enables or disables reversing the bits.
Syntax
Visual Basic (Declaration) | |
---|
Public Property ReverseBits As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As CodecsRawSaveOptions
Dim value As Boolean
instance.ReverseBits = value
value = instance.ReverseBits
|
C# | |
---|
public bool ReverseBits {get; set;} |
C++/CLI | |
---|
public:
property bool ReverseBits {
bool get();
void set (bool value);
} |
Return Value
true to reverse the bit order when writing CCITT Group 3 and 4 files and RAW uncompressed data, so that the least
significant bit (LSB) is first.
Example
Requirements
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
See Also