Class WorkbookFormatProvidersCollection
Represents collection of Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.Spreadsheet
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public class WorkbookFormatProvidersCollection : IList<IWorkbookFormatProvider>, ICollection<IWorkbookFormatProvider>, IEnumerable<IWorkbookFormatProvider>, IList, ICollection, IEnumerable
Constructors
WorkbookFormatProvidersCollection()
Declaration
public WorkbookFormatProvidersCollection()
Properties
Count
Gets the number of elements contained in the collection.
Declaration
public int Count { get; }
Property Value
System.Int32
|
Implements
Item[Int32]
Gets or sets the Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider at the specified index.
Declaration
public IWorkbookFormatProvider this[int index] { get; set; }
Parameters
System.Int32
index
The index. |
Property Value
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider
The Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider. |
Implements
Methods
Add(IWorkbookFormatProvider)
Adds an item to the collection.
Declaration
public void Add(IWorkbookFormatProvider item)
Parameters
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider
item
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
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider
item
The object to locate in the collection. |
Returns
System.Boolean
true if |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<IWorkbookFormatProvider> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<Telerik.Windows.Documents.Spreadsheet.FormatProviders.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
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider
item
The object to locate in the collection. |
Returns
System.Int32
The index of |
Implements
Insert(Int32, IWorkbookFormatProvider)
Inserts an item to the collection at the specified index.
Declaration
public void Insert(int index, IWorkbookFormatProvider item)
Parameters
System.Int32
index
The zero-based index at which |
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider
item
The object to insert into the System.Collections.Generic.IList<T>. |
Implements
Remove(IWorkbookFormatProvider)
Removes the first occurrence of a specific object from the collection.
Declaration
public bool Remove(IWorkbookFormatProvider item)
Parameters
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider
item
The object to remove from the collection. |
Returns
System.Boolean
true if |
Implements
RemoveAt(Int32)
Removes the item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
System.Int32
index
The zero-based index of the item to remove. |
Implements
Explicit Interface Implementations
ICollection<IWorkbookFormatProvider>.CopyTo(IWorkbookFormatProvider[], Int32)
Declaration
void ICollection<IWorkbookFormatProvider>.CopyTo(IWorkbookFormatProvider[] array, int arrayIndex)
Parameters
Telerik.Windows.Documents.Spreadsheet.FormatProviders.IWorkbookFormatProvider[]
array
|
System.Int32
arrayIndex
|
Implements
ICollection<IWorkbookFormatProvider>.IsReadOnly
Declaration
bool ICollection<IWorkbookFormatProvider>.IsReadOnly { get; }
Returns
System.Boolean
|
Implements
ICollection.CopyTo(Array, Int32)
Declaration
void ICollection.CopyTo(Array array, int index)
Parameters
System.Array
array
|
System.Int32
index
|
Implements
ICollection.Count
Declaration
int ICollection.Count { get; }
Returns
System.Int32
|
Implements
ICollection.IsSynchronized
Declaration
bool ICollection.IsSynchronized { get; }
Returns
System.Boolean
|
Implements
ICollection.SyncRoot
Declaration
object ICollection.SyncRoot { get; }
Returns
System.Object
|
Implements
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.Collections.IEnumerator
|
Implements
IList.Add(Object)
Declaration
int IList.Add(object value)
Parameters
System.Object
value
|
Returns
System.Int32
|
Implements
IList.Clear()
Declaration
void IList.Clear()
Implements
IList.Contains(Object)
Declaration
bool IList.Contains(object value)
Parameters
System.Object
value
|
Returns
System.Boolean
|
Implements
IList.get_Item(Int32)
Declaration
object IList.get_Item(int index)
Parameters
System.Int32
index
|
Returns
System.Object
|
Implements
IList.IndexOf(Object)
Declaration
int IList.IndexOf(object value)
Parameters
System.Object
value
|
Returns
System.Int32
|
Implements
IList.Insert(Int32, Object)
Declaration
void IList.Insert(int index, object value)
Parameters
System.Int32
index
|
System.Object
value
|
Implements
IList.IsFixedSize
Declaration
bool IList.IsFixedSize { get; }
Returns
System.Boolean
|
Implements
IList.IsReadOnly
Declaration
bool IList.IsReadOnly { get; }
Returns
System.Boolean
|
Implements
IList.Item[Int32]
Declaration
object IList.this[] { get; set; }
Parameters
System.Int32
index
|
Returns
System.Object
|
Implements
IList.Remove(Object)
Declaration
void IList.Remove(object value)
Parameters
System.Object
value
|
Implements
IList.RemoveAt(Int32)
Declaration
void IList.RemoveAt(int index)
Parameters
System.Int32
index
|
Implements
IList.set_Item(Int32, Object)
Declaration
void IList.set_Item(int index, object value)
Parameters
System.Int32
index
|
System.Object
value
|