Właściwość NamedRange.FormatConditions —
Pobiera FormatConditions , która reprezentuje wszystkie formaty warunkowe dla NamedRange 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 NamedRange kontroli.
Przykłady
Poniższy przykład kodu tworzy NamedRange , a następnie używa FormatConditions właściwość, aby zmienić czcionkę w NamedRange Jeśli wartość w NamedRange jest mniejsza niż wartość w komórce A1.
Ten przykład dotyczy dostosowywania poziomie dokumentu.
Private formatConditionsRange As Microsoft.Office.Tools.Excel.NamedRange
Private Sub ModifyFormatConditions()
formatConditionsRange = Me.Controls.AddNamedRange( _
Me.Range("B1"), "formatConditionsRange")
Me.Range("A1").Value2 = 99000
Me.formatConditionsRange.Value2 = 98052
' Set conditional formatting to alter the font if
' the formatConditionsRange value is less than the value in A1.
Dim condition1 As Excel.FormatCondition = _
Me.formatConditionsRange.FormatConditions.Add( _
Excel.XlFormatConditionType.xlCellValue, _
Excel.XlFormatConditionOperator.xlLess, "=$a$1", )
condition1.Font.Bold = True
condition1.Font.Color = &HFF00
End Sub
Microsoft.Office.Tools.Excel.NamedRange formatConditionsRange;
private void ModifyFormatConditions()
{
formatConditionsRange = this.Controls.AddNamedRange(
this.Range["B1"], "formatConditionsRange");
this.Range["A1"].Value2 = 99000;
this.formatConditionsRange.Value2 = 98052;
// Set conditional formatting to alter the font if
// the formatConditionsRange value is less than the value in A1.
Excel.FormatCondition condition1 =
(Excel.FormatCondition)this.formatConditionsRange.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..