Excel.Interfaces.RangeFontUpdateData interface
An interface for updating data on the RangeFont
object, for use in rangeFont.set({ ... })
.
Properties
bold | Represents the bold status of the font. |
color | HTML color code representation of the text color (e.g., #FF0000 represents Red). |
italic | Specifies the italic status of the font. |
name | Font name (e.g., "Calibri"). The name's length should not be greater than 31 characters. |
size | Font size. |
underline | Type of underline applied to the font. See |
Property Details
bold
Represents the bold status of the font.
bold?: boolean;
Property Value
boolean
Remarks
color
HTML color code representation of the text color (e.g., #FF0000 represents Red).
color?: string;
Property Value
string
Remarks
italic
Specifies the italic status of the font.
italic?: boolean;
Property Value
boolean
Remarks
name
Font name (e.g., "Calibri"). The name's length should not be greater than 31 characters.
name?: string;
Property Value
string
Remarks
size
underline
Type of underline applied to the font. See Excel.RangeUnderlineStyle
for details.
underline?: Excel.RangeUnderlineStyle | "None" | "Single" | "Double" | "SingleAccountant" | "DoubleAccountant";
Property Value
Excel.RangeUnderlineStyle | "None" | "Single" | "Double" | "SingleAccountant" | "DoubleAccountant"
Remarks
Office Add-ins