A collection of instances on a worksheet.

Inheritance

Implements
  • ICollection<WorksheetDataTable>
  • IEnumerable<WorksheetDataTable>
  • IEnumerable

Gets the number of data tables in the collection.

public int Count { get; }

Gets the data table at the specified index in the collection.

public WorksheetDataTable this[int index] { get; }

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

Clears all data tables from the collection.

public void Clear()

Returns any

Removes the specified data table from the collection.

public bool Remove(WorksheetDataTable dataTable)

Parameters

  • dataTable: WorksheetDataTable

Returns any

Removes the data table at the specified index from the collection.

public void RemoveAt(int index)

Parameters

  • index: int

Returns any