[]
Represents the collection of the ReportObject objects.
public abstract class ReportObjectCollection<TItem> : ICollection<TItem>, IEnumerable<TItem>, IList, ICollection, IEnumerable where TItem : ReportObject
Name | Description |
---|---|
TItem | The type of elements in the collection. |
Name | Description |
---|---|
ReportObjectCollection() |
Name | Description |
---|---|
Count | Gets the number of elements in the collection. |
this[int] | Gets the element at the specified index. |
this[string] | Gets the element with specified name. |
Report | Gets the C1FlexReport object owning this collection. |
Name | Description |
---|---|
Contains(string) | Determines whether the collection contains an item with specified name. |
Contains(TItem) | Determines whether the collection contains a specific item. |
CopyTo(TItem[], int) | Copies the elements of the collection to an Array, starting at a particular array index. |
FindByName(string) | Gets the item by its name, returns null if not found. |
IndexByName(string) | Gets the index of the element by its name. |
IndexOf(TItem) | Gets the index of the element. |
Move(int, int) | Moves the item with the specified |