XmlMappedRange.FormatConditions 屬性
取得 FormatConditions 集合,表示 XmlMappedRange 控制項的所有格式化條件。
命名空間: Microsoft.Office.Tools.Excel
組件: Microsoft.Office.Tools.Excel (在 Microsoft.Office.Tools.Excel.dll 中)
語法
'宣告
ReadOnly Property FormatConditions As FormatConditions
FormatConditions FormatConditions { get; }
屬性值
型別:Microsoft.Office.Interop.Excel.FormatConditions
FormatConditions 集合,表示 XmlMappedRange 控制項的所有格式化條件。
範例
下列程式碼範例使用 FormatConditions 屬性,當 XmlMappedRange 的值小於儲存格 A1 的值時,便會變更 XmlMappedRange 的字型。此程式碼範例假設目前工作表包含名為 CustomerZipCell 的 XmlMappedRange。
Private Sub ModifyFormatConditions()
Me.Range("A1").Value2 = 99000
Me.CustomerZipCell.Value2 = 98052
' Set conditional formatting to alter the font and interior pattern if
' the CustomerZipCell value is less than the value in A1.
Dim condition1 As Excel.FormatCondition = _
Me.CustomerZipCell.FormatConditions.Add( _
Excel.XlFormatConditionType.xlCellValue, _
Excel.XlFormatConditionOperator.xlLess, "=$a$1")
condition1.Font.Bold = True
condition1.Font.Color = &HFF00
End Sub
private void ModifyFormatConditions()
{
this.Range["A1"].Value2 = 99000;
this.CustomerZipCell.Value2 = 98052;
// Set conditional formatting to alter the font and interior pattern if
// the CustomerZipCell value is less than the value in A1.
Excel.FormatCondition condition1 =
(Excel.FormatCondition)this.CustomerZipCell.FormatConditions.Add(
Excel.XlFormatConditionType.xlCellValue,
Excel.XlFormatConditionOperator.xlLess, "=$a$1");
condition1.Font.Bold = true;
condition1.Font.Color = 0xFF00;
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。