FormatConditionCollection
内容
[
隐藏
]FormatConditionCollection class
表示条件格式。 FormatConditions 最多可以包含三种条件格式。
public class FormatConditionCollection
特性
姓名 | 描述 |
---|---|
Count { get; } | 获取条件的计数。 |
Item { get; } | 通过索引获取格式化条件。 |
RangeCount { get; } | 获取条件格式范围的计数。 |
方法
姓名 | 描述 |
---|---|
Add(CellArea, FormatConditionType, OperatorType, string, string) | 在 FormatConditions 中添加格式条件和受影响的单元格范围 |
AddArea(CellArea) | 添加条件格式的单元格范围。 |
AddCondition(FormatConditionType) | 添加格式条件。 |
AddCondition(FormatConditionType, OperatorType, string, string) | 添加格式化条件。 |
GetCellArea(int) | 通过索引获取条件格式的单元格范围。 |
RemoveArea(int) | 按索引删除条件格式的单元格范围。 |
RemoveArea(int, int, int, int) | 删除范围内的条件格式。 |
RemoveCondition(int) | 按索引删除格式化条件。 |
例子
[C#]
//创建一个新的工作簿。
Workbook workbook = new Workbook();
//获取第一个工作表。
Worksheet sheet = workbook.Worksheets[0];
//添加一个空的条件格式
int index = sheet.ConditionalFormattings.Add();
FormatConditionCollection fcs = sheet.ConditionalFormattings[index];
//设置条件格式范围。
CellArea ca = new CellArea();
ca.StartRow = 0;
ca.EndRow = 0;
ca.StartColumn = 0;
ca.EndColumn = 0;
fcs.AddArea(ca);
ca = new CellArea();
ca.StartRow = 1;
ca.EndRow = 1;
ca.StartColumn = 1;
ca.EndColumn = 1;
fcs.AddArea(ca);
//添加条件。
int conditionIndex = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100");
//添加条件。
int conditionIndex2 = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100");
//设置背景颜色。
FormatCondition fc = fcs[conditionIndex];
fc.Style.BackgroundColor = Color.Red;
//保存Excel文件
workbook.Save("output.xls");
[Visual Basic]
'实例化工作簿对象
Dim workbook As Workbook = New Workbook()
Dim sheet As Worksheet = workbook.Worksheets(0)
'添加一个空的条件格式
Dim index As Integer = sheet.ConditionalFormattings.Add()
Dim fcs As FormatConditionCollection = sheet.ConditionalFormattings(index)
'设置条件格式范围。
Dim ca As CellArea = New CellArea()
ca.StartRow = 0
ca.EndRow = 0
ca.StartColumn = 0
ca.EndColumn = 0
fcs.AddArea(ca)
ca = New CellArea()
ca.StartRow = 1
ca.EndRow = 1
ca.StartColumn = 1
ca.EndColumn = 1
fcs.AddArea(ca)
'添加条件。
Dim conditionIndex As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "=A2", "100")
'添加条件。
Dim conditionIndex2 As Integer = fcs.AddCondition(FormatConditionType.CellValue, OperatorType.Between, "50", "100")
'设置背景颜色。
Dim fc As FormatCondition = fcs(conditionIndex)
fc.Style.BackgroundColor = Color.Red
'保存 Excel 文件
workbook.Save("output.xls")
也可以看看
- 命名空间 Aspose.Cells
- 部件 Aspose.Cells