Skip to content

IncludeBorder (属性)

如果指定样式中包含 ColorColorIndexLineStyleWeight 边框属性,则该属性值为 TrueBoolean 类型,可读写。

示例

javascript
/*本示例在 Sheet1 的 A1 单元格样式中加入边框格式。*/
function test() {
    Application.Worksheets.Item("Sheet1").Range("A1").Style.IncludeBorder = true
}
javascript
/*本示例显示活动工作表中B2单元格样式是否加入边框格式。*/
function test() {
    let range = ActiveSheet.Range("B2")
    console.log(range.Style.IncludeBorder)
}