Share via


LineDisplayProperties.CustomGlyphList Property

2/27/2008

Holds an array of instances of the RangeOfCharacters helper class, which represents the character code ranges that are available for defining glyphs.

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

Syntax

'Declaration
Public Property CustomGlyphList As RangeOfCharacters()
public RangeOfCharacters[] CustomGlyphList { get; set; }
public:
property array<RangeOfCharacters^>^ CustomGlyphList {
    array<RangeOfCharacters^>^ get ();
    void set (array<RangeOfCharacters^>^ value);
}
/** @property */
public RangeOfCharacters[] get_CustomGlyphList ()

/** @property */
public void set_CustomGlyphList (RangeOfCharacters[] value)
public function get CustomGlyphList () : RangeOfCharacters[]

public function set CustomGlyphList (value : RangeOfCharacters[])

Remarks

An instance in the array can contain one character, or a range of characters. Character codes are represented as two-digit ASCII or four-digit Unicode hexadecimal values. Each value can actually represent a range of values specified by using To and From properties of the RangeOfCharacters class.

For example, if the From property is set to "2D," and the To property to "4D," then the device supports glyph definitions for the characters "-" and "M," respectively. If the range is "002D" to "004D", then the device supports glyph definitions for the Unicode characters between 002D and 004D inclusive. Also, if the array contains two instances, or ranges, "2D and 2F", and "3D and 3F", then the device supports glyph definitions for the ranges of hex characters 2D through 2F and 3D through 3F.

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

LineDisplayProperties Class
LineDisplayProperties Members
Microsoft.PointOfService.BaseServiceObjects Namespace
LineDisplayBase.CustomGlyphList Property