Class ConditionalFormatsGroup
Summary description for ConditionalFormatsGroup.
Implements
Inherited Members
Namespace: Syncfusion.XlsIO.Implementation.Collections.Grouping
Assembly: Syncfusion.XlsIO.Portable.dll
Syntax
public class ConditionalFormatsGroup : CommonObject, IDisposable, IConditionalFormats, IEnumerable, IParentApplication, IOptimizedUpdate
Constructors
ConditionalFormatsGroup(IApplication, Object)
Creates new instance of the group.
Declaration
public ConditionalFormatsGroup(IApplication application, object parent)
Parameters
| Type | Name | Description |
|---|---|---|
| IApplication | application | Application object for the new group. |
| System.Object | parent | Parent object for the new group. |
Properties
Count
Returns number of elements in the group. Read-only.
Declaration
public int Count { get; }
Property Value
| Type |
|---|
| System.Int32 |
Item[Int32]
Returns single entry from the group. Read-only.
Declaration
public IConditionalFormats this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Property Value
| Type |
|---|
| IConditionalFormats |
Methods
AddCondition()
Adds new condition to the collection.
Declaration
public IConditionalFormat AddCondition()
Returns
| Type | Description |
|---|---|
| IConditionalFormat | Newly added condition. |
BeginUpdate()
This method should be called before several updates to the object will take place.
Declaration
public void BeginUpdate()
EndUpdate()
This method should be called after several updates to the object took place.
Declaration
public void EndUpdate()
GetEnumerator()
Returns an enumerator that can iterate through a collection.
Declaration
public IEnumerator GetEnumerator()
Returns
| Type | Description |
|---|---|
| System.Collections.IEnumerator | An IEnumerator that can iterate through the collection. |
Remove()
Removes the Condtional Format at the specified range
Declaration
public void Remove()
RemoveAt(Int32)
Removes the Condtional Format at the Specified Index
Declaration
public void RemoveAt(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Explicit Interface Implementations
IConditionalFormats.Count
Returns number of elements in the collection. Read-only.
Declaration
int IConditionalFormats.Count { get; }
Returns
| Type |
|---|
| System.Int32 |
IConditionalFormats.get_Item(Int32)
Declaration
IConditionalFormat IConditionalFormats.get_Item(int index)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Returns
| Type |
|---|
| IConditionalFormat |
IConditionalFormats.Item[Int32]
Returns single element from the collection. Read-only.
Declaration
IConditionalFormat IConditionalFormats.this[] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Returns
| Type |
|---|
| IConditionalFormat |