[]
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.
public void AddGlyphs(string text, bool includeUnicodeRanges)
Type | Name | Description |
---|---|---|
string | text | The string to add the glyphs from. |
bool | includeUnicodeRanges | If true, for each unique glyph in |
Adds unique glyphs from the specified string to the current EmbeddedFont.
public void AddGlyphs(string text)
Type | Name | Description |
---|---|---|
string | text | The string to add the glyphs from. |
Adds a range of glyphs to the current EmbeddedFont.
public void AddGlyphs(int first, int last)
Type | Name | Description |
---|---|---|
int | first | The first glyph in the range to add. |
int | last | The last glyph in the range to add. |
Adds all glyphs from the specified range to the current EmbeddedFont.
public void AddGlyphs(UnicodeRangeEnum unicodeRange)
Type | Name | Description |
---|---|---|
UnicodeRangeEnum | unicodeRange | The range to add. |
Adds all C1.Util.CodeRange objects in codeRanges to the current EmbeddedFont.
[CLSCompliant(false)]
public void AddGlyphs(CodeRanges codeRanges)
Type | Name | Description |
---|---|---|
CodeRanges | codeRanges | C1.Util.CodeRange to add. |