Search Results for

    Show / Hide Table of Contents

    Class FontTypes

    Supported PDF Fonts

    Inheritance
    System.Object
    IronSoftware.Drawing.Extensions.Enumeration
    FontTypes
    Implements
    System.IComparable
    Namespace: IronSoftware.Drawing
    Assembly: IronSoftware.Drawing.Common.dll
    Syntax
    public class FontTypes : Enumeration

    Selecting a standard PDF font in C# is a matter of picking the right FontTypes value and passing it wherever a font parameter is expected. FontTypes is the catalog of PDF-standard typefaces available across IronSoftware rendering pipelines, covering the 14 fonts guaranteed by the PDF specification plus extended variants, all exposed as static properties on the class.

    The 23 members fall into four functional families:

    **Arial variants:** Arial, ArialBold, ArialItalic, ArialBoldItalic cover the sans-serif workhorse in its four standard styles.

    **Courier and Courier New variants:** Courier, CourierBold, CourierOblique, CourierBoldOblique, CourierNew, CourierNewBold, CourierNewItalic, CourierNewBoldItalic provide monospaced options useful for code listings, receipts, and tabular data where character-width consistency matters.

    **Helvetica variants:** Helvetica, HelveticaBold, HelveticaOblique, HelveticaBoldOblique deliver the classic neutral sans-serif in upright and oblique weights.

    **Serif and symbol fonts:** TimesNewRoman, TimesNewRomanBold, TimesNewRomanItalic, TimesNewRomanBoldItalic handle body text that benefits from serifs, while Symbol and ZapfDingbats supply mathematical symbols and decorative glyphs that are embedded in the PDF specification itself.

    Beyond the static properties, FromString accepts a font name as a plain string and returns the matching FontTypes value, which is useful when a font choice arrives from configuration, a database column, or user input rather than being fixed at compile time.

    Because every member is a static property, no constructor call is needed. Reference the font directly by name, or resolve it at runtime with FromString.

    using IronSoftware.Drawing;
    
    // Resolve a font from a config value at runtime
    string configuredFont = "TimesNewRomanBold";
    FontTypes font = FontTypes.FromString(configuredFont);
    
    // Or reference a font directly by its static property
    FontTypes heading = FontTypes.HelveticaBold;
    FontTypes body    = FontTypes.TimesNewRoman;
    FontTypes mono    = FontTypes.CourierNew;

    Explore the IronDrawing get-started guide for setup, the font rendering how-to for practical usage patterns, the PDF font examples, and the full API docs for related drawing types.

    Properties

    Arial

    Represents the Arial font type.

    Declaration
    public static FontTypes Arial { get; }
    Property Value
    Type Description
    FontTypes

    ArialBold

    Represents the Arial-Bold font type.

    Declaration
    public static FontTypes ArialBold { get; }
    Property Value
    Type Description
    FontTypes

    ArialBoldItalic

    Represents the Arial-BoldItalic font type.

    Declaration
    public static FontTypes ArialBoldItalic { get; }
    Property Value
    Type Description
    FontTypes

    ArialItalic

    Represents the Arial-Italic font type.

    Declaration
    public static FontTypes ArialItalic { get; }
    Property Value
    Type Description
    FontTypes

    Courier

    Represents the Courier font type.

    Declaration
    public static FontTypes Courier { get; }
    Property Value
    Type Description
    FontTypes

    CourierBold

    Represents the Courier-Bold font type.

    Declaration
    public static FontTypes CourierBold { get; }
    Property Value
    Type Description
    FontTypes

    CourierBoldOblique

    Represents the Courier-BoldOblique font type.

    Declaration
    public static FontTypes CourierBoldOblique { get; }
    Property Value
    Type Description
    FontTypes

    CourierNew

    Represents the CourierNew font type.

    Declaration
    public static FontTypes CourierNew { get; }
    Property Value
    Type Description
    FontTypes

    CourierNewBold

    Represents the CourierNew-Bold font type.

    Declaration
    public static FontTypes CourierNewBold { get; }
    Property Value
    Type Description
    FontTypes

    CourierNewBoldItalic

    Represents the CourierNew-BoldItalic font type.

    Declaration
    public static FontTypes CourierNewBoldItalic { get; }
    Property Value
    Type Description
    FontTypes

    CourierNewItalic

    Represents the CourierNew-Italic font type.

    Declaration
    public static FontTypes CourierNewItalic { get; }
    Property Value
    Type Description
    FontTypes

    CourierOblique

    Represents the Courier-Oblique font type.

    Declaration
    public static FontTypes CourierOblique { get; }
    Property Value
    Type Description
    FontTypes

    Helvetica

    Represents the Helvetica font type.

    Declaration
    public static FontTypes Helvetica { get; }
    Property Value
    Type Description
    FontTypes

    HelveticaBold

    Represents the Helvetica-Bold font type.

    Declaration
    public static FontTypes HelveticaBold { get; }
    Property Value
    Type Description
    FontTypes

    HelveticaBoldOblique

    Represents the Helvetica-BoldOblique font type.

    Declaration
    public static FontTypes HelveticaBoldOblique { get; }
    Property Value
    Type Description
    FontTypes

    HelveticaOblique

    Represents the Helvetica-Oblique font type.

    Declaration
    public static FontTypes HelveticaOblique { get; }
    Property Value
    Type Description
    FontTypes

    Symbol

    Represents the Symbol font type.

    Declaration
    public static FontTypes Symbol { get; }
    Property Value
    Type Description
    FontTypes

    TimesNewRoman

    Represents the TimesNewRoman font type.

    Declaration
    public static FontTypes TimesNewRoman { get; }
    Property Value
    Type Description
    FontTypes

    TimesNewRomanBold

    Represents the TimesNewRoman-Bold font type.

    Declaration
    public static FontTypes TimesNewRomanBold { get; }
    Property Value
    Type Description
    FontTypes

    TimesNewRomanBoldItalic

    Represents the TimesNewRoman-BoldItalic font type.

    Declaration
    public static FontTypes TimesNewRomanBoldItalic { get; }
    Property Value
    Type Description
    FontTypes

    TimesNewRomanItalic

    Represents the TimesNewRoman-Italic font type.

    Declaration
    public static FontTypes TimesNewRomanItalic { get; }
    Property Value
    Type Description
    FontTypes

    ZapfDingbats

    Represents the ZapfDingbats font type.

    Declaration
    public static FontTypes ZapfDingbats { get; }
    Property Value
    Type Description
    FontTypes

    Methods

    FromString(String)

    Returns the corresponding FontTypes based on the provided font name string.

    Declaration
    public static FontTypes FromString(string fontName)
    Parameters
    Type Name Description
    System.String fontName

    The name of the font.

    Returns
    Type Description
    FontTypes

    The corresponding FontTypes object.

    Exceptions
    Type Condition
    System.InvalidCastException

    Thrown when the provided font name is not a recognized standard PDF font type.

    Implements

    System.IComparable
    ☀
    ☾
    Downloads
    • Download with Nuget
    In This Article
    Back to top
    Install with Nuget
    IronDrawing_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronDrawing