PlusMinusOptions

Options for editing-based Plus Minus Module

TypeScript
export interface

Properties

PropertyTypeDescriptionDefault
decrementKeystringKey to decrease cell value for nudges (if not overriden in Plus Minus Rule/Nudge).'-'
incrementKeystringKey to increase cell value for nudges (if not overriden in Plus Minus Rule/Nudge).'+'

Property Details

decrementKey

Key to decrease cell value for nudges (if not overriden in Plus Minus Rule/Nudge).

Can be a single key (e.g. '-') or a keyboard shortcut combination that uses + as the glue between parts (e.g. 'shift+Backspace', 'ctrl+ArrowDown'). Supported modifiers are ctrl, cmd, alt and shift.

TypeScript
decrementKey?: string;
Default Value

'-'

Property Value

string

incrementKey

Key to increase cell value for nudges (if not overriden in Plus Minus Rule/Nudge).

Can be a single key (e.g. '+') or a keyboard shortcut combination that uses + as the glue between parts (e.g. 'shift+Enter', 'ctrl+ArrowUp'). Supported modifiers are ctrl, cmd, alt and shift.

TypeScript
incrementKey?: string;
Default Value

'+'

Property Value

string