Excel.Interfaces.ShapeLineFormatUpdateData interface
用于更新对象上的 ShapeLineFormat
数据的接口,用于 在 中使用 shapeLineFormat.set({ ... })
。
属性
color | 表示 HTML 颜色格式的线条颜色,格式 #RRGGBB (例如“FFA500”) 或命名的 HTML 颜色 (例如“orange”) 。 |
dash |
表示形状的线条样式。
|
style | 表示形状的线条样式。
|
transparency | 将指定线条的透明度表示为从 0.0(不透明)到 1.0(清晰)的值。
|
visible | 指定形状元素的线条格式是否可见。
|
weight | 表示线条的粗细(以磅为单位)。
|
属性详细信息
color
表示 HTML 颜色格式的线条颜色,格式 #RRGGBB (例如“FFA500”) 或命名的 HTML 颜色 (例如“orange”) 。
color?: string;
属性值
string
注解
dashStyle
表示形状的线条样式。
null
当线条不可见或短划线样式不一致时返回 。 有关详细信息,请参阅 Excel.ShapeLineDashStyle
。
dashStyle?: Excel.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot";
属性值
Excel.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot"
注解
style
表示形状的线条样式。
null
当线条不可见或样式不一致时返回 。 有关详细信息,请参阅 Excel.ShapeLineStyle
。
style?: Excel.ShapeLineStyle | "Single" | "ThickBetweenThin" | "ThickThin" | "ThinThick" | "ThinThin";
属性值
Excel.ShapeLineStyle | "Single" | "ThickBetweenThin" | "ThickThin" | "ThinThick" | "ThinThin"
注解
transparency
将指定线条的透明度表示为从 0.0(不透明)到 1.0(清晰)的值。
null
当形状的透明度不一致时返回 。
transparency?: number;
属性值
number