BinaryConversion Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the possible binary conversion methods for legacy controls.
public enum BinaryConversion
type BinaryConversion =
Public Enum BinaryConversion
- Inheritance
-
BinaryConversion
Fields
Name | Value | Description |
---|---|---|
None | 0 | Data is placed one byte per character, with no conversion. This is the default. |
Nibble | 1 | Each byte is converted into two characters. This option provides for the fastest conversion between binary and ASCII characters. |
Decimal | 2 | Each byte is converted into three characters. This option provides for the easiest conversion between binary and ASCII characters for Visual Basic and similar languages. |