PrintDocument for WinForms | ComponentOne
C1.PrintDocument.6 Assembly / C1.C1Preview Namespace / EmbeddedFont Class / AddGlyphs Method / AddGlyphs(String,Boolean) Method
The string to add the glyphs from.
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.

In This Topic
    AddGlyphs(String,Boolean) Method
    In This Topic
    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.
    Syntax
    'Declaration
     
    Public Overloads Sub AddGlyphs( _
       ByVal text As String, _
       ByVal includeUnicodeRanges As Boolean _
    ) 
    public void AddGlyphs( 
       string text,
       bool includeUnicodeRanges
    )

    Parameters

    text
    The string to add the glyphs from.
    includeUnicodeRanges
    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