IconSet 接口
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
代表用于图标集条件格式规则的单一图标集。
public interface class IconSet : System::Collections::IEnumerable
[System.Runtime.InteropServices.Guid("0002449B-0000-0000-C000-000000000046")]
[System.Runtime.InteropServices.InterfaceType(2)]
public interface IconSet : System.Collections.IEnumerable
Public Interface IconSet
Implements IEnumerable
- 属性
- 实现
示例
以下代码示例创建了一个代表测试分数的数字范围,然后对该范围应用了图标集条件格式规则。 图标集的类型将从默认图标变为五箭头图标集。 最后,将阈值类型从百分点修改为硬编码数字。
<span class="label">Sub CreateIconSetCF()
Dim cfIconSet As IconSetCondition
'Fill cells with sample data from 1 to 10
With ActiveSheet
.Range("C1") = 55
.Range("C2") = 92
.Range("C3") = 88
.Range("C4") = 77
.Range("C5") = 66
.Range("C6") = 93
.Range("C7") = 76
.Range("C8") = 80
.Range("C9") = 79
.Range("C10") = 83
.Range("C11") = 66
.Range("C12") = 74
End With
Range("C1:C12").Select
'Create an icon set conditional format for the created sample data range
Set cfIconSet = Selection.FormatConditions.AddIconSetCondition
'Change the icon set to a 5-arrow icon set
cfIconSet.IconSet = ActiveWorkbook.IconSets(xl5Arrows)
'The IconCriterion collection contains all of IconCriteria
'By indexing into the collection you can modify each criteria
With cfIconSet.IconCriteria(1)
.Type = xlConditionValueNumber
.Value = 0
.Operator = 7
End With
With cfIconSet.IconCriteria(2)
.Type = xlConditionValueNumber
.Value = 60
.Operator = 7
End With
With cfIconSet.IconCriteria(3)
.Type = xlConditionValueNumber
.Value = 70
.Operator = 7
End With
With cfIconSet.IconCriteria(4)
.Type = xlConditionValueNumber
.Value = 80
.Operator = 7
End With
With cfIconSet.IconCriteria(5)
.Type = xlConditionValueNumber
.Value = 90
.Operator = 7
End With
End Sub</span>
注解
IconSet 对象是集合的IconSets子对象。
使用 对象的 属性分配 IconSet 为条件格式设置的 IconSetCondition 图标。 通过将枚举的常量 XlIconSet 之一作为 对象的 属性的索引 IconSets 传递,将此属性设置为内置图标集之 _Workbook 一。 有关详细信息,请参阅示例。
属性
_Default[Object] |
仅供内部使用。 |
Application |
在没有对象限定符的情况下使用时,此属性返回一个 _Application 表示 Microsoft Office Excel 应用程序的 对象。 如果与对象识别符一起使用,则此属性返回代表指定对象的创建者的 Application 对象。 此为只读属性。 |
Count |
返回一个 Integer 值,该值指定图标集中的图标数。 此为只读属性。 |
Creator |
返回一个 32 位整数,等效于枚举中的 XlCreator 常量,该常量指示创建此对象的应用程序。 此为只读属性。 |
ID |
返回枚举的常量之一,该常量 XlIconSet 指定图标集条件格式规则中使用的图标集的名称。 |
Item[Object] |
返回一个 Icon 对象,该对象代表图标集中的单个图标。 此为只读属性。 |
Parent |
返回指定对象的父对象。 只读。 |
方法
GetEnumerator() |
代表用于图标集条件格式规则的单一图标集。 |