ResultCellCallback
The ResultCellCallback
type describes a function that takes a ResultCell
's Id
and its value.
(
cellId: Id,
cell: ResultCell,
): void
Type | Description | |
---|---|---|
cellId | Id | The |
cell | ResultCell | The value of the |
returns | void | This has no return value. |
A ResultCellCallback
is provided when using the forEachResultCell
method, so that you can do something based on every ResultCell
in a ResultRow
. See that method for specific examples.
Since
v2.0.0