PlusMinusNudge
Defines a Plus Minus Rule - used in the Plus Minus Module
TypeScript
export interface PlusMinusNudge extendsExtends
Properties
| Property | Description |
|---|---|
| Name | Name of the Plus Minus Nudge rule |
| NudgeValue | Amount by which to update cell when Rule is applied |
| Rule | (Optional) Boolean Expression to determine whether to apply the Nudge |
| Scope | Where Rule is applied |
| IsReadOnly | Sets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full') |
| IsSuspended | Suspends (i.e. turns off) an Adaptable Object |
Property Details
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
Scope
Where Rule is applied
TypeScript
Scope: ColumnScope;Property Value
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