Class ListObjectCollection

ListObjectCollection class

Represents a collection of ListObject objects in the worksheet.

public class ListObjectCollection : CollectionBase<ListObject>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; }Gets the ListObject by index. (2 indexers)
Item { get; set; }

Methods

NameDescription
Add(string, string, bool)Adds a ListObject to the worksheet.
Add(int, int, int, int, bool)Adds a ListObject to the worksheet.
BinarySearch(ListObject)
BinarySearch(ListObject, IComparer<ListObject>)
BinarySearch(int, int, ListObject, IComparer<ListObject>)
Clear()
Contains(ListObject)
CopyTo(ListObject[])
CopyTo(ListObject[], int)
CopyTo(int, ListObject[], int, int)
Exists(Predicate<ListObject>)
Find(Predicate<ListObject>)
FindAll(Predicate<ListObject>)
FindIndex(Predicate<ListObject>)
FindIndex(int, Predicate<ListObject>)
FindIndex(int, int, Predicate<ListObject>)
FindLast(Predicate<ListObject>)
FindLastIndex(Predicate<ListObject>)
FindLastIndex(int, Predicate<ListObject>)
FindLastIndex(int, int, Predicate<ListObject>)
GetEnumerator()
IndexOf(ListObject)
IndexOf(ListObject, int)
IndexOf(ListObject, int, int)
LastIndexOf(ListObject)
LastIndexOf(ListObject, int)
LastIndexOf(ListObject, int, int)
RemoveAt(int)
UpdateColumnName()Update all column name of the tables.

See Also