Represents collection of IWorkbookFormatProvider.
Definition
Namespace:Telerik.Windows.Controls.Spreadsheet
Assembly:Telerik.Windows.Controls.Spreadsheet.dll
Syntax:
public class WorkbookFormatProvidersCollection : IList<IWorkbookFormatProvider>, ICollection<IWorkbookFormatProvider>, IEnumerable<IWorkbookFormatProvider>, IList, ICollection, IEnumerable
Inheritance: objectWorkbookFormatProvidersCollection
Implements:
Constructors
public WorkbookFormatProvidersCollection()
Properties
Gets the number of elements contained in the collection.
public int Count { get; }
Implements:
Methods
Adds an item to the collection.
public void Add(IWorkbookFormatProvider item)
The object to add to the collection.
Implements:
Removes all items from the collection.
public void Clear()
Implements:
Determines whether the collection contains a specific value.
public bool Contains(IWorkbookFormatProvider item)
The object to locate in the collection.
Returns:true if item is found in the collection; otherwise, false.
Implements:
GetEnumerator()
IEnumerator<IWorkbookFormatProvider>
Returns an enumerator that iterates through the collection.
public IEnumerator<IWorkbookFormatProvider> GetEnumerator()
IEnumerator<IWorkbookFormatProvider>
An enumerator that can be used to iterate through the collection.
Implements:
Determines the index of a specific item in the collection.
public int IndexOf(IWorkbookFormatProvider item)
The object to locate in the collection.
Returns:The index of item if found in the collection; otherwise, -1.
Implements:
Removes the first occurrence of a specific object from the collection.
public bool Remove(IWorkbookFormatProvider item)
The object to remove from the collection.
Returns:true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the original collection.
Implements:
Removes the item at the specified index.
public void RemoveAt(int index)
The zero-based index of the item to remove.
Implements: