A collection of rows in a worksheet.

Inheritance

object
WorksheetItemCollection<WorksheetRow>
RowColumnCollectionBase<WorksheetRow>
Implements
  • ICollection<WorksheetRow>
  • IEnumerable<WorksheetRow>
  • IEnumerable

Gets the row at the specified index.

public WorksheetRow this[int index] { get; }

Gets the maximum number of items allowed in this collection.

protected override int MaxCount { get; }

Inserts one or more rows into the collection

public void Insert(int index, int count = 1)

Parameters

  • index: int
  • count: int

Returns any

Removes one or more rows from the collection

public void Remove(int index, int count = 1)

Parameters

  • index: int
  • count: int

Returns any