PlusMinusNudge

Defines a Plus Minus Rule - used in the Plus Minus Module

TypeScript
export interface PlusMinusNudge extends
Extends

SuspendableObject

Properties

PropertyTypeDescription
DecrementKeystringOptional keyboard key that decreases cell values for this nudge only (overrides global decrementKey)
IncrementKeystringOptional keyboard key that increases cell values for this nudge only (overrides global incrementKey)
NamestringName of the Plus Minus Nudge rule
NudgeValuenumberAmount by which to update cell when Rule is applied
RuleAdaptableBooleanQuery(Optional) Boolean Expression to determine whether to apply the Nudge
ScopeColumnScope<NumberScopeDataType>Numeric columns where the nudge is applied
IsReadOnlybooleanSets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedbooleanSuspends (i.e. turns off) an Adaptable Object

Property Details

DecrementKey

Optional keyboard key that decreases cell values for this nudge only (overrides global decrementKey)

TypeScript
DecrementKey?: string;
Property Value

string

IncrementKey

Optional keyboard key that increases cell values for this nudge only (overrides global incrementKey)

TypeScript
IncrementKey?: string;
Property Value

string

Name

Name of the Plus Minus Nudge rule

TypeScript
Name: string;
Property Value

string

NudgeValue

Amount by which to update cell when Rule is applied

TypeScript
NudgeValue: number;
Property Value

number

Rule

(Optional) Boolean Expression to determine whether to apply the Nudge

TypeScript
Rule?: AdaptableBooleanQuery;
Property Value

AdaptableBooleanQuery

Scope

Numeric columns where the nudge is applied

TypeScript
Scope: ColumnScope<NumberScopeDataType>;
Property Value

ColumnScope<NumberScopeDataType>

IsSuspended

Inherited from SuspendableObject

Suspends (i.e. turns off) an Adaptable Object

TypeScript
IsSuspended?: boolean;
Property Value

boolean

IsReadOnly

Inherited from AdaptableObject

Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')

TypeScript
IsReadOnly?: boolean;
Property Value

boolean