Type1Font.GetGlyphById

GetGlyphById(string)

Returns glyph by glyph id.

public virtual Glyph GetGlyphById(string id)
ParameterTypeDescription
idStringGlyph id.

Return Value

Glyph.

See Also


GetGlyphById(uint)

Returns glyph by glyph id.

public Glyph GetGlyphById(uint id)
ParameterTypeDescription
idUInt32Glyph id.

Return Value

Glyph.

See Also


GetGlyphById(GlyphId)

Returns glyph by glyph id. Glyph id is a unique number for a glyph, which is font type dependent. Type1 Font glyph id can be instance of (GlyphStringId) class or (GlyphUInt32Id) class.

public override Glyph GetGlyphById(GlyphId id)
ParameterTypeDescription
idGlyphIdGlyph id.

Return Value

Glyph.

See Also