The collection of instances on a .

Inheritance

Implements
  • IList<WorksheetTable>
  • ICollection<WorksheetTable>
  • IEnumerable<WorksheetTable>
  • IEnumerable

Gets the number of tables in the collection.

public int Count { get; }

Gets the at the specified index.

public WorksheetTable this[int index] { get; }

Gets the with the specified name.

public WorksheetTable this[string name] { get; }

Add(string, bool, WorksheetTableStyle)

Section titled "Add(string, bool, WorksheetTableStyle)"

Formats a region as a table and adds an associated to the collection.

public WorksheetTable Add(string region, bool tableHasHeaders, WorksheetTableStyle tableStyle = null)

Parameters

  • region: string
  • tableHasHeaders: bool
  • tableStyle: WorksheetTableStyle

Returns any

Clears the collection and removes all tables from the worksheet.

public void Clear()

Returns any

Determines whether the specified is in the collection.

public bool Contains(WorksheetTable table)

Parameters

  • table: WorksheetTable

Returns any

Determines whether a with the specified name is in the collection.

public bool Exists(string name)

Parameters

  • name: string

Returns any

Gets the index of the specified in the collection.

public int IndexOf(WorksheetTable table)

Parameters

  • table: WorksheetTable

Returns any

Removes the from the collection.

public bool Remove(WorksheetTable table, bool convertToRange = true)

Parameters

  • table: WorksheetTable
  • convertToRange: bool

Returns any

Removes the at the specified index.

public void RemoveAt(int index, bool convertToRange = true)

Parameters

  • index: int
  • convertToRange: bool

Returns any