ConditionalFormattingCollection类

ConditionalFormattingCollection类

封装 FormatCondition 对象的集合。

ConditionalFormattingCollection 类型公开了以下成员:

特性

属性 描述
capacity 获取或设置数组列表可以包含的元素数。

方法

方法 描述
copy_to(array) 将整个数组列表复制到兼容的一维数组列表,从目标数组列表的开头开始。
copy_to(index, array, array_index, count) 将数组列表中的一系列元素复制到兼容的一维数组列表,从目标数组列表的指定索引开始。
index_of(item, index) 搜索指定的对象并返回数组列表中从指定索引延伸到最后一个元素的元素范围内第一次出现的从零开始的索引。
index_of(item, index, count) 搜索指定的对象并返回数组列表中从指定索引开始并包含指定数量的元素的元素范围内第一次出现的从零开始的索引。
last_index_of(item) 搜索指定的对象并返回整个数组列表中最后一次出现的从零开始的索引。
last_index_of(item, index) 搜索指定的对象并返回数组列表中从第一个元素到指定索引的元素范围内最后一次出现的从零开始的索引。
last_index_of(item, index, count) 搜索指定的对象并返回数组列表中包含指定数量的元素并以指定索引结束的元素范围内最后一次出现的从零开始的索引。
remove_area(start_row, start_column, total_rows, total_columns) 删除范围内的所有条件格式。
add() 将 FormatConditions 添加到集合中。
binary_search(item) 使用默认比较器在整个排序数组列表中搜索元素,并返回元素的从零开始的索引。

例子

from aspose.cells import CellArea, FormatConditionType, OperatorType, Workbook
from aspose.pydrawing import Color

# Instantiating a Workbook object
workbook = Workbook()
sheet = workbook.worksheets[0]
# Get Conditional Formatting
cformattings = sheet.conditional_formattings
# Adds an empty conditional formatting
index = cformattings.add()
# Get newly added Conditional formatting
fcs = cformattings[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)
# Add condition.
conditionIndex = fcs.add_condition(FormatConditionType.CELL_VALUE, OperatorType.BETWEEN, "=A2", "100")
# Add 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")

也可以看看