Excel.Interfaces.ConditionalRangeBorderData interface
一个接口,用于描述通过调用 conditionalRangeBorder.toJSON()
返回的数据。
属性
color | 表示边框线颜色的 HTML 颜色代码,格式 #RRGGBB (例如“FFA500”) 或命名的 HTML 颜色 (例如“橙色”) 。 |
side |
指示边框的特定边的常量值。 有关详细信息,请参阅 |
style | 线条样式的常量之一,指定边框的线条样式。 有关详细信息,请参阅 |
属性详细信息
color
表示边框线颜色的 HTML 颜色代码,格式 #RRGGBB (例如“FFA500”) 或命名的 HTML 颜色 (例如“橙色”) 。
color?: string;
属性值
string
注解
sideIndex
指示边框的特定边的常量值。 有关详细信息,请参阅 Excel.ConditionalRangeBorderIndex
。
sideIndex?: Excel.ConditionalRangeBorderIndex | "EdgeTop" | "EdgeBottom" | "EdgeLeft" | "EdgeRight";
属性值
Excel.ConditionalRangeBorderIndex | "EdgeTop" | "EdgeBottom" | "EdgeLeft" | "EdgeRight"
注解
style
线条样式的常量之一,指定边框的线条样式。 有关详细信息,请参阅 Excel.BorderLineStyle
。
style?: Excel.ConditionalRangeBorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot";
属性值
Excel.ConditionalRangeBorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" | "Dot"