Excel.Interfaces.RangeBorderLoadOptions interface
Represents the border of an object.
Remarks
Properties
$all | Specifying |
color | HTML color code representing the color of the border line, in the form #RRGGBB (e.g., "FFA500"), or as a named HTML color (e.g., "orange"). |
side |
Constant value that indicates the specific side of the border. See |
style | One of the constants of line style specifying the line style for the border. See |
tint |
Specifies a double that lightens or darkens a color for the range border, the value is between -1 (darkest) and 1 (brightest), with 0 for the original color. A |
weight | Specifies the weight of the border around a range. See |
Property Details
$all
Specifying $all
for the load options loads all the scalar properties (such as Range.address
) but not the navigational properties (such as Range.format.fill.color
).
$all?: boolean;
Property Value
boolean
color
HTML color code representing the color of the border line, in the form #RRGGBB (e.g., "FFA500"), or as a named HTML color (e.g., "orange").
color?: boolean;
Property Value
boolean
Remarks
sideIndex
Constant value that indicates the specific side of the border. See Excel.BorderIndex
for details.
sideIndex?: boolean;
Property Value
boolean
Remarks
style
One of the constants of line style specifying the line style for the border. See Excel.BorderLineStyle
for details.
style?: boolean;
Property Value
boolean
Remarks
tintAndShade
Specifies a double that lightens or darkens a color for the range border, the value is between -1 (darkest) and 1 (brightest), with 0 for the original color. A null
value indicates that the border doesn't have a uniform tintAndShade
setting.
tintAndShade?: boolean;
Property Value
boolean
Remarks
weight
Specifies the weight of the border around a range. See Excel.BorderWeight
for details.
weight?: boolean;
Property Value
boolean
Remarks
Office Add-ins