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. |
strikethrough | Specifies the strikethrough status of font. A |
subscript | Specifies the subscript status of font. Returns |
superscript | Specifies the superscript status of font. Returns |
tint |
Specifies a double that lightens or darkens a color for the range font. The value is between -1 (darkest) and 1 (brightest), with 0 for the original color. A |
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
strikethrough
Specifies the strikethrough status of font. A null
value indicates that the entire range doesn't have a uniform strikethrough setting.
strikethrough?: boolean;
Property Value
boolean
Remarks
subscript
Specifies the subscript status of font. Returns true
if all the fonts of the range are subscript. Returns false
if all the fonts of the range are superscript or normal (neither superscript, nor subscript). Returns null
otherwise.
subscript?: boolean;
Property Value
boolean
Remarks
superscript
Specifies the superscript status of font. Returns true
if all the fonts of the range are superscript. Returns false
if all the fonts of the range are subscript or normal (neither superscript, nor subscript). Returns null
otherwise.
superscript?: boolean;
Property Value
boolean
Remarks
tintAndShade
Specifies a double that lightens or darkens a color for the range font. The value is between -1 (darkest) and 1 (brightest), with 0 for the original color. A null
value indicates that the entire range doesn't have a uniform font tintAndShade
setting.
tintAndShade?: number;
Property Value
number
Remarks
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