Optional
ignoreIf true
, the listener will not be called when the range's
address changes (due to row/column insert/delete, or moves)
Optional
ignoreIf true
, the listener will not be called when the data
within the range changes.
Optional
ignoreThe actual range can also change due to insert/removes or delete of a sheet. Setting absoluteCoords to true will ignore shifts in the range.
Optional
onceIf true
then will auto deregister once fired.
Optional
transactionalIf true
, the listener will be treated as transactional. This has
a few implications:
If false
(the default), the listener will be called asynchronously
after the transaction is complete. The listener's side-effects will
not be part of the transaction's commit history.
Optional
weaklyIf true
then the listener will be weakly and will be auto removed it the listener is gc'ed.
Options to control which events trigger a listener. By default, all event types will trigger the listener. Setting any of these options to
true
will prevent the listener from being called for that event type.