FormatConditionCollection klass
FormatConditionCollection klass
Representerar villkorsstyrd formatering. FormatConditions kan innehålla upp till tre villkorliga format.
Typen FormatConditionCollection avslöjar följande medlemmar:
Egenskaper
Fast egendom | Beskrivning |
---|---|
count | Hämtar antalet villkor. |
range_count | Hämtar antal villkorligt formaterade områden. |
Hämtar formateringsvillkoret efter index.
Indexerare
Namn | Beskrivning |
---|---|
[index] | indexet för formateringsvillkoret som ska returneras. |
Metoder
Metod | Beskrivning |
---|---|
add_condition(self, type, operator_type, formula1, formula2) | Lägger till ett formateringsvillkor. |
add_condition(self, type) | Lägg till ett formatvillkor. |
remove_area(self, index) | Tar bort villkorsstyrt formaterat cellområde efter index. |
remove_area(self, start_row, start_column, total_rows, total_columns) | Ta bort villkorsstyrd formatering i området. |
add(self, cell_area, type, operator_type, formula1, formula2) | Lägger till ett formateringsvillkor och påverkat cellnummer till FormatConditions FormatConditions kan innehålla upp till tre villkorliga format. Referenser till andra ark är inte tillåtna i formler för villkorsstyrd formatering. |
add_area(self, cell_area) | Lägger till ett villkorsstyrt formaterat cellområde. |
get_cell_area(self, index) | Hämtar det villkorsstyrda formaterade cellområdet efter index. |
remove_condition(self, index) | Tar bort formateringsvillkoret efter index. |
Exempel
from aspose.cells import CellArea, FormatConditionType, OperatorType, Workbook
from aspose.pydrawing import Color
# Create a new Workbook.
workbook = Workbook()
# Get the first worksheet.
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()
ca.start_row = 0
ca.end_row = 0
ca.start_column = 0
ca.end_column = 0
fcs.add_area(ca)
ca = CellArea()
ca.start_row = 1
ca.end_row = 1
ca.start_column = 1
ca.end_column = 1
fcs.add_area(ca)
# Adds condition.
conditionIndex = fcs.add_condition(FormatConditionType.CELL_VALUE, OperatorType.BETWEEN, "=A2", "100")
# Adds condition.
conditionIndex2 = fcs.add_condition(FormatConditionType.CELL_VALUE, OperatorType.BETWEEN, "50", "100")
# Sets the background color.
fc = fcs[conditionIndex]
fc.style.background_color = Color.red
# Saving the Excel file
workbook.save("output.xls")
Se även
- modul
aspose.cells