The return type of apply, typically the source range (ICellRange
).
Finalizes and applies all queued updates to the range.
This method commits the changes added via push, pushAt, or pushMultipleAt.
Optional
options: UpdateCellsOptionsOptional settings for the update operation.
The source object, typically the range (ICellRange
).
Adds an update at a specific cell address.
The cell address to update. See ICell.Address.
The update to apply. See ICell.Update.
The current IncrementalUpdater
instance for chaining.
Adds an update at a specific major (row) and minor (column) index.
This method is slightly faster than push as it bypasses address parsing.
The row index of the cell to update.
The column index of the cell to update.
The update to apply. See ICell.Update.
The current IncrementalUpdater
instance for chaining.
Adds multiple updates for contiguous cells along the minor axis (columns), starting at the specified indices.
The current IncrementalUpdater
instance for chaining.
Provides an API for efficiently performing incremental updates to specific cells within a range.
Unless ICellRange.StartUpdateOptions.allowUnorderedWrites is
true
the updates must be written in row-major or column-major order as determined by IRange.Orientation, with major/minor coordinates increasing on each update, otherwise an error will be thrown.Example
See
ICellRange.startIncrementalUpdates