A collection of hidden [[WorksheetRow]] instances.

HiddenRowCollection

new HiddenRowCollection(a: Worksheet, b: CustomView): HiddenRowCollection

Returns HiddenRowCollection

$t: Type

Gets the number of rows in the collection. The number of rows in the collection.

get count(): number

Returns number

Gets the worksheet associated with this collection. The worksheet associated with this collection.

get worksheet(): Worksheet

Returns Worksheet

Adds a row to the collection.

add_1(row: WorksheetRow): void

Parameters

  • row: WorksheetRow

    The row to be added to the hidden rows collection.

Returns void

Clears all rows from the collection.

clear(): void

Returns void

Determines whether the specified row exists in the collection.

contains(row: WorksheetRow): boolean

Parameters

  • row: WorksheetRow

    The row to search for in the collection.

Returns boolean

getEnumerator(): IEnumerator$1<WorksheetRow>

Returns IEnumerator$1<WorksheetRow>

Gets the row at the specified index. The row at the specified index.

item(a: number): WorksheetRow

Parameters

  • a: number

Returns WorksheetRow

Removes the specified row from the collection if it exists.

remove_1(row: WorksheetRow): boolean

Parameters

Returns boolean

Removes the row at the specified index in the collection.

removeAt(index: number): void

Parameters

  • index: number

    The zero-based index of the row in the collection.

Returns void