GlyphContourPointDelegate 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.
A callback delegate used to retrieve the coordinates of a specific contour point within a glyph outline.
public delegate bool GlyphContourPointDelegate(Font font, object fontData, uint glyph, uint pointIndex, out int x, out int y);
Parameters
- fontData
- Object
The user-specified font data associated with the font.
- glyph
- UInt32
The glyph identifier to query.
- pointIndex
- UInt32
The zero-based index of the contour point to retrieve.
- x
- Int32
When this method returns, contains the X coordinate of the contour point in font units.
- y
- Int32
When this method returns, contains the Y coordinate of the contour point in font units.
Return Value
true if the contour point was found; otherwise, false.