Activates the worksheet bringing it in to focus (equivalent to clicking the sheet's tab in Excel).
Activating a worksheet deactivates the currently activated worksheet.
Adds a listener for the specified worksheet-level event.
Type of the worksheet-level event to listen for.
Function called when the specified event occurs.
Adds a listener that is called when the worksheet is activated.
Name of the event fired when the worksheet is activated.
Listener function called when the event occurs.
Adds a listener that is called when when cells in the worksheet are changed by the user or by an external link (but not during a recalculation).
Name of the event fired when the worksheet is changed.
Listener function called when the event occurs.
Adds a listener that is called when the worksheet is deactivated (i.e. another worksheet is activated).
Name of the event fired when the worksheet is deactivated.
Listener function called when the event occurs.
Triggers calculation for the worksheet.
Only necessary when automatic calculation is turned off.
Clears formatting for all of the cells in the worksheet.
Clears values for all of the cells in the worksheet.
Clears values and formatting for all of the cells in the worksheet.
Clears formatting for a range of cells in the worksheet.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. Multiple cell ranges can be provided separated by commas (e.g. A1,B2:C3
).
Clears values for a range of cells in the worksheet.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. Multiple cell ranges can be provided separated by commas (e.g. A1,B2:C3
).
Clears values and formatting for a range of cells in the worksheet.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. Multiple cell ranges can be provided separated by commas (e.g. A1,B2:C3
).
Creates a data stream that updates the value(s) of a cell range at a given interval.
Any valid cell notation (addresses, names, etc) that defines the cells that the data stream will be output to.
Function that is run after every interval, returns the value that the cellRange
will be updated with.
The time (in milliseconds) between updates (defaults to 1 second).
The data stream object enabling control of the stream.
Deletes the worksheet.
After calling this function do not attempt to use this worksheet again. Doing so will likely result in an AdapterError since the underlying object/file is no longer available.
Attempting to delete the only worksheet in a workbook will result in an AdapterError being thrown.
Filters a table of cells in the worksheet.
The cellRange
should define the table headers, and columnIndex
will determine which column to apply the filter to (1
being the left-most column in the range).
Set filterOperator
to And
and Or
with criteria1
and criteria2
to construct compound criteria. When using only a single criteria, filterOperator
should be set to Or
otherwise the
filter may not display the expected results. When setting criteria use simple logic rules e.g. >100
, <=50000
, =Account1
, <>Account2
.
Alternatively use the other filter operators for predefined criteria:
Top10Items
/Bottom10Items
: Highest/lowest valued items displayed (specify number of items in criteria1
).Top10Percent
/Bottom10Percent
: Highest/lowest valued items displayed (specify percentage in criteria1
).FilterValues
: Display cells that have a specific value (specify value in criteria1
).Any valid cell notation (addresses, names, etc) that defines the cells or column headers that the filter will be applied to.
The column on which the filter will be applied (1
being the left-most column in the range).
The type of operator to apply to the filter.
The first criteria to apply.
The second criteria to apply (use with criteria1
and filterOperator
to construct compound criteria).
Determines whether to display the drop down icon against the filtered column (defaults to true
).
Get a range of cells in the worksheet.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. Multiple cell ranges can be provided separated by commas (e.g. A1,B2:C3
).
The cells defined by the range.
Gets the worksheet name.
The worksheet name.
Protects the worksheet so that it cannot be modified.
Removes a previously added listener for the specified worksheet-level event.
Function that was provided as the listener when addEventListener was called.
Sets the formatting for a range of cells in the worksheet.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. Multiple cell ranges can be provided separated by commas (e.g. A1,B2:C3
).
An object that defines the formatting options to set on the cells.
Assigns a name to a range of cells in the worksheet which can then be used to specify the same range in other functions.
Adding a name does not remove any other names that have already been set for the specified range.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. Multiple cell ranges can be provided separated by commas (e.g. A1,B2:C3
).
The name to assign to the cell range.
Sets the values for a range of cells in the worksheet.
The function takes a values map which is a two-dimensional array where the outer array defines the number of rows, and the inner arrays define the values for each column (cell). The provided cell range determines the starting point for the update (i.e. the first cell in the range).
If only a single value is provided in the values map then the entire provided cell range will be updated with this value.
Any valid cell notation (addresses, names, etc) that defines one or more cells in the worksheet. The first cell in the range will be used as the starting point for the update.
A two-dimensional array where the outer array defines the number of rows, and the inner arrays define the values for each column (cell).
Sets the worksheet name.
Generated using TypeDoc
An object that represents a worksheet in an open workbook in Excel.