Excel.Interfaces.RangeBorderUpdateData interface
An interface for updating data on the RangeBorder
object, for use in rangeBorder.set({ ... })
.
Properties
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"). |
style | One of the constants of line style specifying the line style for the border. See |
weight | Specifies the weight of the border around a range. See |
Property Details
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?: string;
Property Value
string
Remarks
style
One of the constants of line style specifying the line style for the border. See Excel.BorderLineStyle
for details.
style?: Excel.BorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot" | "Double" | "SlantDashDot";
Property Value
Excel.BorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot" | "Double" | "SlantDashDot"
Remarks
weight
Specifies the weight of the border around a range. See Excel.BorderWeight
for details.
weight?: Excel.BorderWeight | "Hairline" | "Thin" | "Medium" | "Thick";
Property Value
Excel.BorderWeight | "Hairline" | "Thin" | "Medium" | "Thick"
Remarks
Office Add-ins