Share via


RemoteOrderDisplay.CharacterSet Property

2/27/2008

Gets the character set for displaying characters for the video unit specified by the CurrentUnitId property.

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

Syntax

'Declaration
Public MustOverride ReadOnly Property CharacterSet As Integer
public abstract int CharacterSet { get; }
public:
virtual property int CharacterSet {
    int get () abstract;
}
/** @property */
public abstract int get_CharacterSet ()
public abstract function get CharacterSet () : int

Remarks

When CapSelectCharacterSet is true, CharacterSet can be set with one of the character set numbers found in the CharacterSetList property.

CharacterSet is typically initialized to the default video character set used by each video unit online. It should then be kept current by the service object while the device is enabled.

CharacterSet is updated during the SelectCharacterSet method.

The character set number is one of the following ranges or values:

Value

Description

Range 101 - 199

A device-specific character set that does not match a code page, or the ASCII or Windows ANSI character sets.

Range 400 - 990

Code page; matches one of the standard values.

Unicode

The character set supports UNICODE. The value of this constant is 997.

Ascii

The ASCII character set, supporting the ASCII characters between 20-hex and 7F-hex. The value of this constant is 998.

Windows

The Windows ANSI character set. The value of this constant is 999. This is exactly the same as the Windows code page 1252.

Range 1000 and higher

Windows code page; matches one of the standard values.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.

See Also

Reference

RemoteOrderDisplay Class
RemoteOrderDisplay Members
Microsoft.PointOfService Namespace
RemoteOrderDisplay.CapSelectCharacterSet Property
CurrentUnitId
CharacterSetList
RemoteOrderDisplay.SelectCharacterSet Method