GlyphFromNameDelegate Delegate
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.
Represents a callback method that retrieves a glyph identifier from a glyph name.
public delegate bool GlyphFromNameDelegate(Font font, object fontData, string name, out uint glyph);
Parameters
- font
- Font
The font being queried.
- fontData
- Object
User-supplied font data.
- name
- String
The glyph name to look up.
- glyph
- UInt32
When this method returns, contains the glyph identifier if found.
Return Value
true if the glyph was found; otherwise, false.