A collection of hidden [[WorksheetRow]] instances.
Constructors
Section titled "Constructors"HiddenRowCollection
new HiddenRowCollection(a: Worksheet, b: CustomView): HiddenRowCollection Returns HiddenRowCollection
Properties
Section titled "Properties"$t: Type Accessors
Section titled "Accessors"count
Section titled "count"Gets the number of rows in the collection. The number of rows in the collection.
get count(): number Returns number
worksheet
Section titled "worksheet"Gets the worksheet associated with this collection. The worksheet associated with this collection.
get worksheet(): Worksheet Returns Worksheet
Methods
Section titled "Methods"add_1
Section titled "add_1"Adds a row to the collection.
add_1(row: WorksheetRow): void Parameters
- row:
WorksheetRowThe row to be added to the hidden rows collection.
Returns void
clear
Section titled "clear"Clears all rows from the collection.
clear(): void Returns void
contains
Section titled "contains"Determines whether the specified row exists in the collection.
contains(row: WorksheetRow): boolean Parameters
- row:
WorksheetRowThe row to search for in the collection.
Returns boolean
getEnumerator
Section titled "getEnumerator"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
remove_1
Section titled "remove_1"Removes the specified row from the collection if it exists.
remove_1(row: WorksheetRow): boolean Parameters
- row:
WorksheetRowThe row to removed from the collection.
Returns boolean
removeAt
Section titled "removeAt"Removes the row at the specified index in the collection.
removeAt(index: number): void Parameters
- index:
numberThe zero-based index of the row in the collection.