DataBarBorder.Type 属性 (Excel)

返回或设置由条件格式规则指定的数据条的边框类型。 读/写。

语法

表达式类型

表达 一个代表 DataBarBorder 对象的变量。

返回值

XlDataBarBorderType

示例

下面的代码示例选择单元格区域,向该区域添加数据条条件格式规则,使用 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。