Interface IWorksheetCollection
Inherited Members
System.Collections.IList.Add(System.Object)
System.Collections.IList.Contains(System.Object)
System.Collections.IList.Clear()
System.Collections.IList.IndexOf(System.Object)
System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.IList.Remove(System.Object)
System.Collections.IList.RemoveAt(System.Int32)
System.Collections.IList.IsReadOnly
System.Collections.IList.IsFixedSize
System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.ICollection.Count
System.Collections.ICollection.SyncRoot
System.Collections.ICollection.IsSynchronized
System.Collections.IEnumerable.GetEnumerator()
Namespace: Telerik.WinControls.UI.Export.ExcelML
Assembly: TelerikData.dll
Syntax
public interface IWorksheetCollection : IList, ICollection, IEnumerable
Properties
Item[Int32]
Declaration
WorksheetElement this[int index] { get; set; }
Parameters
System.Int32
index
|
Property Value
WorksheetElement
|
Methods
Add(WorksheetElement)
Contains(WorksheetElement)
Declaration
bool Contains(WorksheetElement value)
Parameters
WorksheetElement
value
|
Returns
System.Boolean
|
CopyTo(WorksheetElement[], Int32)
Declaration
void CopyTo(WorksheetElement[] array, int index)
Parameters
WorksheetElement[]
array
|
System.Int32
index
|
IndexOf(WorksheetElement)
Declaration
int IndexOf(WorksheetElement value)
Parameters
WorksheetElement
value
|
Returns
System.Int32
|
Insert(Int32, WorksheetElement)
Declaration
void Insert(int index, WorksheetElement value)
Parameters
System.Int32
index
|
WorksheetElement
value
|