Excel) (IconCriterion.Icon 屬性
會傳回或指定圖示集設定格式化的條件規則中準則的圖示。 讀取/寫入。
語法
運算式。圖示
表達 代表 IconCriterion 物件的 變數。
註解
在圖示集條件式格式化規則中設定圖示準則的Icon屬性之後,IconSetCondition物件的IconSet屬性會變更為xlCustomSet。
範例
下列程式碼範例會建立圖示集條件式格式化規則,以顯示四個圖示分割到指定的百分比。 該圖示集原先設定為使用 [四箭號 (彩色)] 圖示集,不過 Icon 屬性是用於覆寫哪些圖示是用於第一和第三準則。
執行程式碼之後,第一個準則的圖示是 紅十字 圖示,第二個準則的圖示是 4 箭號 (彩色) 圖示集的第二個箭號,第三個準則的圖示是 黃色交通燈 圖示,而第四個準則的圖示是 4 箭號 (彩色) 圖示集的第四個箭號。
Range("A1:A10").Select
Selection.FormatConditions.AddIconSetCondition
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1)
.ReverseOrder = False
.ShowIconOnly = False
.IconSet = ActiveWorkbook.IconSets(xl4Arrows)
End With
With Selection.FormatConditions(1).IconCriteria(1)
.Icon = xlIconRedCross
End With
With Selection.FormatConditions(1).IconCriteria(2)
.Type = xlConditionValuePercent
.Value = 25
.Operator = 7
End With
With Selection.FormatConditions(1).IconCriteria(3)
.Type = xlConditionValuePercent
.Value = 50
.Operator = 7
.Icon = xlIconYellowTrafficLight
End With
With Selection.FormatConditions(1).IconCriteria(4)
.Type = xlConditionValuePercent
.Value = 75
.Operator = 7
End With
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。