BinaryConversion Enumeration

2/27/2008

Enumerates the possible binary conversion methods for legacy controls.

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Syntax

'Declaration
Public Enumeration BinaryConversion
public enum BinaryConversion
public enum class BinaryConversion
public enum BinaryConversion
public enum BinaryConversion

Members

Member name Description
Decimal 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.
Nibble Each byte is converted into two characters. This option provides for the fastest conversion between binary and ASCII characters.
None Data is placed one byte per character, with no conversion. This is the default.

Remarks

Used by the BinaryConversion property of the ILegacyControlObject class.

Note

This enumeration only applies to legacy OPOS controls.

See Also

Reference

Microsoft.PointOfService Namespace
BinaryConversion