Właściwość XmlMappedRange.FormatConditions —
Pobiera FormatConditions , która reprezentuje wszystkie formaty warunkowe dla XmlMappedRange kontroli.
Przestrzeń nazw: Microsoft.Office.Tools.Excel
Zestaw: Microsoft.Office.Tools.Excel (w Microsoft.Office.Tools.Excel.dll)
Składnia
'Deklaracja
ReadOnly Property FormatConditions As FormatConditions
FormatConditions FormatConditions { get; }
Wartość właściwości
Typ: Microsoft.Office.Interop.Excel.FormatConditions
A FormatConditions , która reprezentuje wszystkie formaty warunkowe dla XmlMappedRange kontroli.
Przykłady
Następujący kod w przykładzie wykorzystano FormatConditions właściwość, aby zmienić czcionkę XmlMappedRange Jeśli wartość XmlMappedRange jest mniejsza niż wartość w komórce A1.W tym przykładzie kodu zakłada, że zawiera bieżący arkusz XmlMappedRange o nazwie CustomerZipCell.
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;
}
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Przy użyciu bibliotek z częściowo zaufanego kodu..