interface TextProperties {
    color?: DisplayColor;
    fontKey?: string;
    fontSize?: number;
    fontStyle?: FontWeights;
    letterSpacing?: string;
    lineHeight?: number;
    lineThrough?: boolean;
    SUB_SUPER_SCRIPT?: Scripting;
    textAlign?: Alignment;
    trackingRight?: string;
    typographicCase?: Case;
    underline?: boolean;
    verticalAlign?: VerticalAlign;
    [key: string]:
        | undefined
        | null
        | string
        | number
        | boolean
        | Record<string, unknown>;
}

Indexable

  • [key: string]: undefined | null | string | number | boolean | Record<string, unknown>

Properties

color?: DisplayColor
fontKey?: string
fontSize?: number
fontStyle?: FontWeights
letterSpacing?: string
lineHeight?: number
lineThrough?: boolean
SUB_SUPER_SCRIPT?: Scripting
textAlign?: Alignment
trackingRight?: string
typographicCase?: Case
underline?: boolean
verticalAlign?: VerticalAlign