Excel.Interfaces.ConditionalRangeFontData interface

An interface describing the data returned by calling conditionalRangeFont.toJSON().

Properties

bold

Specifies if the font is bold.

color

HTML color code representation of the text color (e.g., #FF0000 represents Red).

italic

Specifies if the font is italic.

strikethrough

Specifies the strikethrough status of the font.

underline

The type of underline applied to the font. See Excel.ConditionalRangeFontUnderlineStyle for details.

Property Details

bold

Specifies if the font is bold.

bold?: boolean;

Property Value

boolean

Remarks

[ API set: ExcelApi 1.6 ]

color

HTML color code representation of the text color (e.g., #FF0000 represents Red).

color?: string;

Property Value

string

Remarks

[ API set: ExcelApi 1.6 ]

italic

Specifies if the font is italic.

italic?: boolean;

Property Value

boolean

Remarks

[ API set: ExcelApi 1.6 ]

strikethrough

Specifies the strikethrough status of the font.

strikethrough?: boolean;

Property Value

boolean

Remarks

[ API set: ExcelApi 1.6 ]

underline

The type of underline applied to the font. See Excel.ConditionalRangeFontUnderlineStyle for details.

underline?: Excel.ConditionalRangeFontUnderlineStyle | "None" | "Single" | "Double";

Property Value

Excel.ConditionalRangeFontUnderlineStyle | "None" | "Single" | "Double"

Remarks

[ API set: ExcelApi 1.6 ]