Top10 classe
Top10 classe
Descrivi la regola di formattazione condizionale Top10. Questa regola di formattazione condizionale evidenzia le celle di cui i valori rientrano nella parentesi N superiore o N inferiore, come specificato.
Il tipo Top10 espone i seguenti membri:
Costruttori
Costruttore | Descrizione |
---|---|
init | Costruisce una nuova istanza di Top10 |
Proprietà
Proprietà | Descrizione |
---|---|
is_percent | Ottenere o impostare se una regola “massimo/minimo n” è una regola “massimo/minimo n percentuale”. Il valore predefinito è falso. |
is_bottom | Ottenere o impostare se una regola “primo/ultimo n” è una regola “ultimo n”. Il valore predefinito è falso. |
rank | Ottieni o imposta il valore di “n” in una regola di formattazione condizionale “top/bottom n”. Se IsPercent è vero, il valore deve essere compreso tra 0 e 100. Altrimenti deve essere compreso tra 0 e 1000. Il valore predefinito è 10. |
Esempio
from aspose.cells import CellArea, FormatConditionType, OperatorType, Workbook
from aspose.pydrawing import Color
# Instantiating a Workbook object
workbook = Workbook()
sheet = workbook.worksheets[0]
# Adds an empty conditional formatting
index = sheet.conditional_formattings.add()
fcs = sheet.conditional_formattings[index]
# Sets the conditional format range.
ca = CellArea.create_cell_area(0, 0, 10, 10)
fcs.add_area(ca)
# Adds condition.
conditionIndex = fcs.add_condition(FormatConditionType.TOP10, OperatorType.NONE, None, None)
# Sets the background color.
fc = fcs[conditionIndex]
fc.style.background_color = Color.red
top10 = fc.top10
# Set the Top N
top10.rank = 5
# Saving the Excel file
workbook.save("output.xls")
Guarda anche
- modulo
aspose.cells