The collection of instances on a .
Inheritance
object
Implements
- IList<WorksheetTable>
- ICollection<WorksheetTable>
- IEnumerable<WorksheetTable>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of tables in the collection.
public int Count { get; } this[int]
Section titled "this[int]"Gets the at the specified index.
public WorksheetTable this[int index] { get; } this[string]
Section titled "this[string]"Gets the with the specified name.
public WorksheetTable this[string name] { get; } Methods
Section titled "Methods"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
Clear()
Section titled "Clear()"Clears the collection and removes all tables from the worksheet.
public void Clear() Returns any
Contains(WorksheetTable)
Section titled "Contains(WorksheetTable)"Determines whether the specified is in the collection.
public bool Contains(WorksheetTable table) Parameters
- table:
WorksheetTable
Returns any
Exists(string)
Section titled "Exists(string)"Determines whether a with the specified name is in the collection.
public bool Exists(string name) Parameters
- name:
string
Returns any
IndexOf(WorksheetTable)
Section titled "IndexOf(WorksheetTable)"Gets the index of the specified in the collection.
public int IndexOf(WorksheetTable table) Parameters
- table:
WorksheetTable
Returns any
Remove(WorksheetTable, bool)
Section titled "Remove(WorksheetTable, bool)"Removes the from the collection.
public bool Remove(WorksheetTable table, bool convertToRange = true) Parameters
- table:
WorksheetTable - convertToRange:
bool
Returns any
RemoveAt(int, bool)
Section titled "RemoveAt(int, bool)"Removes the at the specified index.
public void RemoveAt(int index, bool convertToRange = true) Parameters
- index:
int - convertToRange:
bool