A collection of hidden instances.

Inheritance

Implements
  • ICollection<WorksheetRow>
  • IEnumerable<WorksheetRow>
  • IEnumerable

Gets the number of rows in the collection.

public int Count { get; }

Gets the row at the specified index.

public WorksheetRow this[int index] { get; }

Gets the worksheet associated with this collection.

public Worksheet Worksheet { get; }

Adds a row to the collection.

public void Add(WorksheetRow row)

Parameters

  • row: WorksheetRow

Returns any

Clears all rows from the collection.

public void Clear()

Returns any

Determines whether the specified row exists in the collection.

public bool Contains(WorksheetRow row)

Parameters

  • row: WorksheetRow

Returns any

Removes the specified row from the collection if it exists.

public bool Remove(WorksheetRow row)

Parameters

  • row: WorksheetRow

Returns any

Removes the row at the specified index in the collection.

public void RemoveAt(int index)

Parameters

  • index: int

Returns any