sheetex - v1.3.0
    Preparing search index...

    Interface Font

    字体

    const font = {
    sz: 18,
    name: '微软雅黑',
    color: 'FF0000',
    b: true,
    }
    interface Font {
        sz?: number;
        name?: string;
        color?: string;
        b?: boolean;
        i?: boolean;
        u?: false | "single" | "double" | "singleAccounting" | "doubleAccounting";
        strike?: boolean;
        vertAlign?: false | "superscript" | "subscript";
    }
    Index

    Properties

    sz?: number

    文字大小(字号)

    name?: string

    字体名称

    color?: string

    文字颜色

    b?: boolean

    是否粗体

    i?: boolean

    是否斜体

    u?: false | "single" | "double" | "singleAccounting" | "doubleAccounting"

    下划线样式

    strike?: boolean

    是否显示删除线

    vertAlign?: false | "superscript" | "subscript"

    上标或下标