Search Results for

    Show / Hide Table of Contents

    Interface IFont

    Interface for cell font value

    Namespace: IronXL.Styles
    Assembly: IronXL.dll
    Syntax
    public interface IFont

    Controlling the typeface of an Excel cell in C# runs through IFont. It describes the font applied to a cell or range, the family, size, weight, and decoration, and is the part of a cell's style a developer touches whenever text needs to stand out as a heading, a total, or a flagged value. It pairs with the borders and fill on the same cell to produce the finished look.

    A developer reaches IFont through IStyle.Font, the get-only property on the style returned by Cell.Style or Range.Style. There is no separate construction step: read .Style.Font and assign to its members, and assigning through a range's style applies the font to every cell in that range at once. This keeps header rows and labeled columns consistent without per-cell code.

    The members map closely to Excel's font dialog. Name sets the typeface and Height the point size, while Bold and Italic control the weight and slant a heading or total usually needs. Underline takes a FontUnderlineType for single or double underlining, Strikeout draws a line through the text for struck-out values, and FontScript raises or lowers text for superscript and subscript. Color is set either through the Color string property or the SetColor method, which accepts a Color value or an RGB string for convenience, so a developer can pass whichever form is already on hand. Because IFont is reached through IStyle.Font, the usual idiom chains the two: range.Style.Font.Bold = true, and the same font members carry over whether the target is one cell or a whole range.

    using IronXL;
    
    WorkBook workbook = WorkBook.Load("report.xlsx");
    WorkSheet sheet = workbook.DefaultWorkSheet;
    IFont font = sheet["A1"].Style.Font;
    font.Name = "Calibri";
    font.Height = 14;
    font.Bold = true;
    font.SetColor("#C00000");

    The cell font size how-to covers sizing and weight, the style cells, borders, and fonts example shows fonts alongside the rest of a cell's styling, and the border and alignment how-to covers the borders and layout that pair with a font on the same style.

    Properties

    Bold

    Property that indicates if cell font is bold

    Declaration
    bool Bold { get; set; }
    Property Value
    Type Description
    System.Boolean

    Color

    Property that returns font color in rgb format.

    Declaration
    string Color { get; set; }
    Property Value
    Type Description
    System.String

    FontScript

    Gets or sets script property of font. Also take a look at FontScript to get list of available options

    Declaration
    FontScript FontScript { get; set; }
    Property Value
    Type Description
    FontScript

    Height

    Gets or sets font size in px

    Declaration
    short Height { get; set; }
    Property Value
    Type Description
    System.Int16

    Italic

    Property that indicates if cell font is italic

    Declaration
    bool Italic { get; set; }
    Property Value
    Type Description
    System.Boolean

    Name

    Gets or sets font name

    Declaration
    string Name { get; set; }
    Property Value
    Type Description
    System.String

    Strikeout

    Get whether to use a strikeout horizontal line through the text or not

    Declaration
    bool Strikeout { get; set; }
    Property Value
    Type Description
    System.Boolean

    Underline

    Gets or sets underline property of font. Also take a look at FontUnderlineType to get list of available options

    Declaration
    FontUnderlineType Underline { get; set; }
    Property Value
    Type Description
    FontUnderlineType

    Methods

    SetColor(Color)

    Method for setting font color with Color value

    Declaration
    void SetColor(Color color)
    Parameters
    Type Name Description
    IronSoftware.Drawing.Color color

    Color value

    SetColor(String)

    Method for setting font color with the rgb string.

    Declaration
    void SetColor(string rgb)
    Parameters
    Type Name Description
    System.String rgb

    Color rgb value

    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronXL_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 IronXL