Adds unique glyphs or glyph ranges from the specified string to the current EmbeddedFont. The ranges recognized by this method are represented by the UnicodeRangeEnum enumeration.

Namespace:  C1.C1Preview
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public void AddGlyphs(
	string text,
	bool includeUnicodeRanges
)
Visual Basic
Public Sub AddGlyphs ( _
	text As String, _
	includeUnicodeRanges As Boolean _
)

Parameters

text
Type: System..::..String
The string to add the glyphs from.
includeUnicodeRanges
Type: System..::..Boolean
If true, for each unique glyph in text, the whole Unicode range containing the glyph (such as "Basic Latin" or "Cyrillic") is added. If false, only the glyph itself is added.

See Also