Excel.Interfaces.RangeBorderUpdateData interface
用于更新 RangeBorder 对象上的数据的接口,用于 在 中使用 rangeBorder.set({ ... })
。
属性
color | 表示边框线颜色的 HTML 颜色代码,形式 #RRGGBB (例如“FFA500”) ,或作为命名的 HTML 颜色 (例如“橙色”) 。 |
style | 线条样式的常量之一,指定边框的线条样式。 有关详细信息,请参阅 |
weight | 指定区域周围的边框的粗细。 有关详细信息,请参阅 |
属性详细信息
color
表示边框线颜色的 HTML 颜色代码,形式 #RRGGBB (例如“FFA500”) ,或作为命名的 HTML 颜色 (例如“橙色”) 。
color?: string;
属性值
string
注解
style
线条样式的常量之一,指定边框的线条样式。 有关详细信息,请参阅 Excel.BorderLineStyle
。
style?: Excel.BorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot" | "Double" | "SlantDashDot";
属性值
Excel.BorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot" | "Double" | "SlantDashDot"
注解
weight
指定区域周围的边框的粗细。 有关详细信息,请参阅 Excel.BorderWeight
。
weight?: Excel.BorderWeight | "Hairline" | "Thin" | "Medium" | "Thick";
属性值
Excel.BorderWeight | "Hairline" | "Thin" | "Medium" | "Thick"