Skip to main content
All docs
V25.1
  • DXFontRepository.AddFont(String) Method

    Loads a font from a file.

    Namespace: DevExpress.Drawing

    Assembly: DevExpress.Drawing.v25.1.dll

    NuGet Package: DevExpress.Drawing

    Declaration

    public void AddFont(
        string fontFileName
    )

    Parameters

    Name Type Description
    fontFileName String

    The full path to the font file.

    Remarks

    The AddFont method supports the following font formats:

    • TrueType fonts (.TTF)

    • OpenType fonts that use CFF (Compact Font Format) glyph outlines (.OTF)

    • OpenType Font Collections (.TTC, .OTC) that contain multiple fonts in a single file

    To avoid excessive layout recalculations, add the required fonts to DXFontRepository before you load a document, report or dashboard that uses these fonts.

    Loaded fonts are not saved to the document, report or dashboard. They are used to display, print, or export the document, report or dashboard to PDF.

    The code sample below adds custom fonts to DXFontRepository. This example uses the following Google fonts:

    using DevExpress.Drawing;
    //...
    
    DXFontRepository.Instance.AddFont(@"Fonts\advent-pro.regular.ttf");
    DXFontRepository.Instance.AddFont(@"Fonts\Roboto-Light.ttf");
    //...
    
    FontRepository.Instance.Dispose();
    
    See Also