A collection of instances on a worksheet.
Inheritance
object
Implements
- ICollection<WorksheetDataTable>
- IEnumerable<WorksheetDataTable>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of data tables in the collection.
public int Count { get; } this[int]
Section titled "this[int]"Gets the data table at the specified index in the collection.
public WorksheetDataTable this[int index] { get; } Methods
Section titled "Methods"Add(WorksheetRegion, WorksheetCell, WorksheetCell)
Section titled "Add(WorksheetRegion, WorksheetCell, WorksheetCell)"Creates a new data table and adds it to the collection.
public WorksheetDataTable Add(WorksheetRegion cellsInTable, WorksheetCell columnInputCell, WorksheetCell rowInputCell) Parameters
- cellsInTable:
WorksheetRegion - columnInputCell:
WorksheetCell - rowInputCell:
WorksheetCell
Returns any
Clear()
Section titled "Clear()"Clears all data tables from the collection.
public void Clear() Returns any
Remove(WorksheetDataTable)
Section titled "Remove(WorksheetDataTable)"Removes the specified data table from the collection.
public bool Remove(WorksheetDataTable dataTable) Parameters
- dataTable:
WorksheetDataTable
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the data table at the specified index from the collection.
public void RemoveAt(int index) Parameters
- index:
int