LineDisplay.CustomGlyphList Property (POS for .NET v1.12 SDK Documentation)
2/27/2008
Gets an array of instances of the RangeOfCharacters helper class, which represents the character code ranges that are available for defining glyphs.
Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property CustomGlyphList As RangeOfCharacters()
public abstract RangeOfCharacters[] CustomGlyphList { get; }
public:
virtual property array<RangeOfCharacters^>^ CustomGlyphList {
array<RangeOfCharacters^>^ get () abstract;
}
/** @property */
public abstract RangeOfCharacters[] get_CustomGlyphList ()
public abstract function get CustomGlyphList () : RangeOfCharacters[]
Remarks
An instance in the array can contain one character, or a range of characters. Character codes are represented as 2-digit ASCII or 4-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 hexadecimal 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
LineDisplay Class
LineDisplay Members
Microsoft.PointOfService Namespace
LineDisplay.CapCustomGlyph Property
GlyphHeight
GlyphWidth
LineDisplay.DefineGlyph Method
RangeOfCharacters