A collection of hidden instances.
Inheritance
object
Implements
- ICollection<WorksheetRow>
- IEnumerable<WorksheetRow>
- IEnumerable
Properties
Section titled "Properties"Count
Section titled "Count"Gets the number of rows in the collection.
public int Count { get; } this[int]
Section titled "this[int]"Gets the row at the specified index.
public WorksheetRow this[int index] { get; } Worksheet
Section titled "Worksheet"Gets the worksheet associated with this collection.
public Worksheet Worksheet { get; } Methods
Section titled "Methods"Add(WorksheetRow)
Section titled "Add(WorksheetRow)"Adds a row to the collection.
public void Add(WorksheetRow row) Parameters
- row:
WorksheetRow
Returns any
Clear()
Section titled "Clear()"Clears all rows from the collection.
public void Clear() Returns any
Contains(WorksheetRow)
Section titled "Contains(WorksheetRow)"Determines whether the specified row exists in the collection.
public bool Contains(WorksheetRow row) Parameters
- row:
WorksheetRow
Returns any
Remove(WorksheetRow)
Section titled "Remove(WorksheetRow)"Removes the specified row from the collection if it exists.
public bool Remove(WorksheetRow row) Parameters
- row:
WorksheetRow
Returns any
RemoveAt(int)
Section titled "RemoveAt(int)"Removes the row at the specified index in the collection.
public void RemoveAt(int index) Parameters
- index:
int