ClassWorkbookFormatProvidersCollection
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
WorkbookFormatProvidersCollection()
Declaration
public WorkbookFormatProvidersCollection()
Properties
Count
Gets the number of elements contained in the collection.
Methods
Add(IWorkbookFormatProvider)
Adds an item to the collection.
Declaration
public void Add(IWorkbookFormatProvider item)
Parameters
item
IWorkbookFormatProvider
The object to add to the collection.
Implements
Clear()
Removes all items from the collection.
Declaration
public void Clear()
Implements
Contains(IWorkbookFormatProvider)
Determines whether the collection contains a specific value.
Declaration
public bool Contains(IWorkbookFormatProvider item)
Parameters
item
IWorkbookFormatProvider
The object to locate in the collection.
Returns
true if item is found in the collection; otherwise, false.
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<IWorkbookFormatProvider> GetEnumerator()
Returns
IEnumerator<IWorkbookFormatProvider>
An enumerator that can be used to iterate through the collection.
Implements
IndexOf(IWorkbookFormatProvider)
Determines the index of a specific item in the collection.
Declaration
public int IndexOf(IWorkbookFormatProvider item)
Parameters
item
IWorkbookFormatProvider
The object to locate in the collection.
Returns
The index of item if found in the collection; otherwise, -1.
Implements
Insert(int, IWorkbookFormatProvider)
Inserts an item to the collection at the specified index.
Remove(IWorkbookFormatProvider)
Removes the first occurrence of a specific object from the collection.
Declaration
public bool Remove(IWorkbookFormatProvider item)
Parameters
item
IWorkbookFormatProvider
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
RemoveAt(int)
Removes the item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
index
The zero-based index of the item to remove.
Implements