Top10
Inhalt
[
Ausblenden
]Top10 class
Beschreiben Sie die Top10 der bedingten Formatierungsregeln. Diese Regel zur bedingten Formatierung hebt Zellen hervor, deren Werte in die obere N- oder untere N-Klammer fallen, wie angegeben.
public class Top10
Konstrukteure
Name | Beschreibung |
---|---|
Top10() | Default_Constructor |
Eigenschaften
Name | Beschreibung |
---|---|
IsBottom { get; set; } | Abrufen oder Festlegen, ob eine „Top/Bottom n“-Regel eine „Bottom n“-Regel ist. Der Standardwert ist „false“. |
IsPercent { get; set; } | Abrufen oder Festlegen, ob eine „Top/Bottom n“-Regel eine „Top/Bottom n Prozent“-Regel ist. Der Standardwert ist „false“. |
Rank { get; set; } | Abrufen oder Festlegen des Werts von „n“ in einer bedingten Formatierungsregel „top/bottom n“. Wenn IsPercent wahr ist, muss der Wert zwischen 0 und 100 liegen. Andernfalls muss er zwischen 0 und 1000 liegen. Der Standardwert ist 10 . |
Beispiele
[C#]
//Instanziieren eines Workbook-Objekts
Workbook workbook = new Workbook();
Worksheet sheet = workbook.Worksheets[0];
//Fügt eine leere bedingte Formatierung hinzu
int index = sheet.ConditionalFormattings.Add();
FormatConditionCollection fcs = sheet.ConditionalFormattings[index];
//Legt den bedingten Formatbereich fest.
CellArea ca = CellArea.CreateCellArea(0, 0, 10, 10);
fcs.AddArea(ca);
//Bedingung hinzufügen.
int conditionIndex = fcs.AddCondition(FormatConditionType.Top10, OperatorType.None, null, null);
//Setzt die Hintergrundfarbe.
FormatCondition fc = fcs[conditionIndex];
fc.Style.BackgroundColor = Color.Red;
Top10 top10 = fc.Top10;
//Setze die Top N
top10.Rank = 5;
//Speichern der Excel-Datei
workbook.Save("output.xls");
[VB.NET]
'Instanziieren eines Workbook-Objekts
Dim workbook As Workbook = New Workbook()
Dim sheet As Worksheet = workbook.Worksheets(0)
' Fügt eine leere bedingte Formatierung hinzu
Dim index As Integer = sheet.ConditionalFormattings.Add()
Dim fcs As FormatConditionCollection = sheet.ConditionalFormattings(index)
'Legt den bedingten Formatbereich fest.
Dim ca As CellArea = CellArea.CreateCellArea(0, 0, 10, 10)
fcs.AddArea(ca)
'Fügt Bedingung hinzu.
Dim conditionIndex As Integer = fcs.AddCondition(FormatConditionType.Top10, OperatorType.None, null, null);
'Legt die Hintergrundfarbe fest.
Dim fc As FormatCondition = fcs(conditionIndex)
fc.Style.BackgroundColor = Color.Red
Dim top10 as Top10 = fc.Top10
'Stellen Sie die obere N ein
top10.Rank = 5
'Speichern der Excel-Datei
workbook.Save("output.xls")
Siehe auch
- namensraum Aspose.Cells
- Montage Aspose.Cells