SheetXL - v0.3.20
    Preparing search index...

    Interface IFontFace

    Represents a font face, encapsulating information about a specific typeface.

    interface IFontFace {
        isIFont: true;
        getFamily(): string;
        getPanose(): string;
        getPitch(): string;
        toJSON(): any;
        toString(): string;
    }
    Index

    Properties

    isIFont: true

    A flag indicating that this object is an IFont instance. Useful for runtime type checking.

    Methods

    • The name of the font face (e.g., 'Arial', 'Times New Roman').

      Returns string

    • The Panose classification string for the font face, providing information about its visual characteristics.

      Returns string

      null if unable to generate.

    • The pitch (or classification) of the font face (e.g., 'variable', 'fixed').

      Returns string

    • Serializes the font face information into a JSON-compatible object.

      Returns any

      A plain JavaScript object representing the font face data.

    • Returns a string representation of the font face.

      Returns string