Skip to content

LineStyle (属性)

返回或设置边框的线型。 XlLineStylexlGray25xlGray50xlGray75xlAutomatic 类型,可读写。

示例

javascript
/*本示例为 Chart1 的图表区和绘图区域设置边框。*/
function test() {
    let chart = Application.Charts.Item("Chart1")
    chart.ChartArea.Border.LineStyle = xlDashDot
    let border = chart.PlotArea.Border
    border.LineStyle = xlDashDotDot
    border.Weight = xlThick
}
javascript
/*本示例将选定区域的所有边框线样式设置为实线。*/
function test() {
    Selection.Borders.LineStyle = xlContinuous
}