ConditionalFormattingIconCollection

ConditionalFormattingIconCollection class

Представляет наборConditionalFormattingIcon объекты.

public class ConditionalFormattingIconCollection : CollectionBase<ConditionalFormattingIcon>

Характеристики

ИмяОписание
Capacity { get; set; }
Count { get; }
Item { get; }Получает элемент ConditionalFormattingIcon по указанному индексу.
Item { get; set; }

Методы

ИмяОписание
Add(ConditionalFormattingIcon)ДобавляетConditionalFormattingIcon объект.
Add(IconSetType, int)ДобавляетConditionalFormattingIcon объект.
BinarySearch(ConditionalFormattingIcon)
BinarySearch(ConditionalFormattingIcon, IComparer<ConditionalFormattingIcon>)
BinarySearch(int, int, ConditionalFormattingIcon, IComparer<ConditionalFormattingIcon>)
Clear()
Contains(ConditionalFormattingIcon)
CopyTo(ConditionalFormattingIcon[])
CopyTo(ConditionalFormattingIcon[], int)
CopyTo(int, ConditionalFormattingIcon[], int, int)
Exists(Predicate<ConditionalFormattingIcon>)
Find(Predicate<ConditionalFormattingIcon>)
FindAll(Predicate<ConditionalFormattingIcon>)
FindIndex(Predicate<ConditionalFormattingIcon>)
FindIndex(int, Predicate<ConditionalFormattingIcon>)
FindIndex(int, int, Predicate<ConditionalFormattingIcon>)
FindLast(Predicate<ConditionalFormattingIcon>)
FindLastIndex(Predicate<ConditionalFormattingIcon>)
FindLastIndex(int, Predicate<ConditionalFormattingIcon>)
FindLastIndex(int, int, Predicate<ConditionalFormattingIcon>)
GetEnumerator()
IndexOf(ConditionalFormattingIcon)
IndexOf(ConditionalFormattingIcon, int)
IndexOf(ConditionalFormattingIcon, int, int)
LastIndexOf(ConditionalFormattingIcon)
LastIndexOf(ConditionalFormattingIcon, int)
LastIndexOf(ConditionalFormattingIcon, int, int)
RemoveAt(int)

Примеры


[C#]

//Создание экземпляра объекта Workbook
Workbook workbook = new Workbook();

Worksheet sheet = workbook.Worksheets[0];

//Получить условное форматирование
ConditionalFormattingCollection cformattings = sheet.ConditionalFormattings;

//Добавляет пустое условное форматирование
int index = cformattings.Add();

//Получить недавно добавленное условное форматирование
FormatConditionCollection fcs = cformattings[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 idx = fcs.AddCondition(FormatConditionType.IconSet);
 
 FormatCondition cond = fcs[idx];
   
 //Устанавливает условие's type
 cond.IconSet.Type = IconSetType.ArrowsGray3;

//Добавить пользовательское условие набора иконок.
 ConditionalFormattingIcon cfIcon = cond.IconSet.CfIcons[0];
 
 cfIcon.Type = IconSetType.Arrows3;
 
 cfIcon.Index = 0;
 
 ConditionalFormattingIcon cfIcon1 = cond.IconSet.CfIcons[1];
 
  cfIcon1.Type = IconSetType.ArrowsGray3;
  
  cfIcon1.Index = 1;
  
  ConditionalFormattingIcon cfIcon2 = cond.IconSet.CfIcons[2];
  
  cfIcon2.Type = IconSetType.Boxes5;
  
  cfIcon2.Index = 2;

//Сохранение файла Excel
workbook.Save("output.xls");

[VB.NET]

'Создание экземпляра объекта Workbook
Dim workbook As Workbook = New Workbook()

Dim sheet As Worksheet = workbook.Worksheets(0)

'Получить условное форматирование
Dim cformattings As ConditionalFormattingCollection = sheet.ConditionalFormattings

'Добавляет пустое условное форматирование
Dim index As Integer = cformattings.Add()

'Получить недавно добавленное условное форматирование
Dim fcs As FormatConditionCollection = cformattings(index)

'Задает диапазон условного формата.
Dim ca As 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 idx As Integer =fcs.AddCondition(FormatConditionType.IconSet)

Dim cond As FormatCondition=fcs[idx]

//Устанавливает условие's type
cfIcon.Type = IconSetType.ArrowsGray3

'Добавить пользовательское условие набора значков.
Dim cfIcon As ConditionalFormattingIcon = cond.IconSet.CfIcons[0]

cfIcon.Type = IconSetType.Arrows3

cfIcon.Index=0

Dim cfIcon1 As ConditionalFormattingIcon = cond.IconSet.CfIcons[1]

cfIcon1.Type = IconSetType.ArrowsGray3

cfIcon1.Index=1

Dim cfIcon2 As ConditionalFormattingIcon = cond.IconSet.CfIcons[2]

cfIcon2.Type = IconSetType.Boxes5

cfIcon2.Index=2

'Сохранение файла Excel
workbook.Save("output.xls")

Смотрите также