ResultTableListener
The ResultTableListener
type describes a function that is used to listen to changes to a query's result Table
.
(
queries: Queries,
tableId: Id,
getCellChange: GetCellChange | undefined,
): void
Type | Description | |
---|---|---|
queries | Queries | A reference to the |
tableId | Id | The |
getCellChange | GetCellChange | undefined | A function that returns information about any |
returns | void | This has no return value. |
A ResultTableListener
is provided when using the addResultTableListener
method. See that method for specific examples.
When called, a ResultTableListener
is given a reference to the Queries
object, the Id
of the Table
that changed (which is the same as the query Id
), and a GetCellChange
function that can be used to query Cell
values before and after the change.
v2.0.0