Edit

Share via


VariationGlyphDelegate Delegate

Definition

A callback delegate used to retrieve the glyph identifier for a Unicode code point with a specific variation selector.

public delegate bool VariationGlyphDelegate(Font font, object fontData, uint unicode, uint variationSelector, out uint glyph);

Parameters

font
Font

The Font instance invoking this callback.

fontData
Object

The user-specified font data associated with the font.

unicode
UInt32

The Unicode code point to map.

variationSelector
UInt32

The Unicode variation selector code point.

glyph
UInt32

When this method returns, contains the glyph identifier for the variation.

Return Value

true if a variation glyph was found; otherwise, false.

Applies to