Type Alias IRunStylePropertiesOptions

IRunStylePropertiesOptions: {
    allCaps?: boolean;
    bold?: boolean;
    boldComplexScript?: boolean;
    border?: IBorderOptions;
    characterSpacing?: number;
    color?: string;
    doubleStrike?: boolean;
    effect?: typeof TextEffect[keyof typeof TextEffect];
    emboss?: boolean;
    emphasisMark?: {
        type?: typeof EmphasisMarkType[keyof typeof EmphasisMarkType];
    };
    font?: string
    | IFontOptions
    | IFontAttributesProperties;
    highlight?: typeof HighlightColor[keyof typeof HighlightColor];
    highlightComplexScript?: boolean | string;
    imprint?: boolean;
    italics?: boolean;
    italicsComplexScript?: boolean;
    kern?: number | PositiveUniversalMeasure;
    language?: ILanguageOptions;
    math?: boolean;
    noProof?: boolean;
    position?: UniversalMeasure;
    revision?: IRunPropertiesChangeOptions;
    rightToLeft?: boolean;
    scale?: number;
    shading?: IShadingAttributesProperties;
    size?: number | PositiveUniversalMeasure;
    sizeComplexScript?: boolean | number | PositiveUniversalMeasure;
    smallCaps?: boolean;
    snapToGrid?: boolean;
    specVanish?: boolean;
    strike?: boolean;
    subScript?: boolean;
    superScript?: boolean;
    underline?: {
        color?: string;
        type?: typeof UnderlineType[keyof typeof UnderlineType];
    };
    vanish?: boolean;
}