FormatConditions 对象 (Excel)

代表一个区域内所有条件格式的集合。

备注

FormatConditions 集合可以包含多个条件格式。 每种格式表示的 操作符 对象。

使用 FormatConditions 属性可返回 FormatConditions 对象。 使用 Add 方法创建新的条件格式,并使用 FormatCondition 对象的 Modify 方法更改现有条件格式。

示例

下例为 E1:E10 单元格添加条件格式。

With Worksheets(1).Range("e1:e10").FormatConditions _ 
 .Add(xlCellValue, xlGreater, "=$a$1") 
 With .Borders 
 .LineStyle = xlContinuous 
 .Weight = xlThin 
 .ColorIndex = 6 
 End With 
 With .Font 
 .Bold = True 
 .ColorIndex = 3 
 End With 
End With

方法

属性

另请参阅

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。