DataBar.BarBorder 属性 (Excel)
返回指定数据条边框的对象。 此为只读属性。
语法
表达式。BarBorder
表达 一个代表 DataBar 对象的变量。
返回值
示例
下面的代码示例选择一个单元格区域,将数据条条件格式规则添加到该区域,使用 BarBorder 属性检索与该规则关联的 DataBarBorder 对象,然后设置数据条的颜色、淡色和类型。
Range("A1:A10").Select
Range("A1:A10").Activate
Set myDataBar = Selection.FormatConditions.AddDatabar
With myDataBar.BarBorder
.Type = xlDataBarBorderSolid
.Color.ThemeColor = xlThemeColorAccent2
.Color.TintAndShade = 0
End With
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。