FlashingCellDefinition

The Flashing Cell Definition

TypeScript
export interface FlashingCellDefinition extends AdaptableObject,
Extends

AdaptableObject, SuspendableObject

Properties

PropertyDescriptionDefault
DownChangeStyleStyle for 'Down' value changesRed BackColour
FlashDurationDuration of Flash - can be number (in ms) or 'always'500ms
FlashTargetShould a cell or whole row flash'cell'
NameName of the Flashing Cell Definition
NeutralChangeStyleStyle for 'Neutral' value changesGray BackColour
RuleWhen Flashing Cell should be triggered
ScopeWhich Columns, DataTypes or Column Types can Flash
UpChangeStyleStyle for 'Up' value changesGreen BackColour
IsReadOnlySets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedSuspends (i.e. turns off) an Adaptable Object

Property Details

DownChangeStyle

Style for 'Down' value changes

TypeScript
DownChangeStyle?: AdaptableStyle;
Default Value

Red BackColour

Property Value

AdaptableStyle

FlashDuration

Duration of Flash - can be number (in ms) or 'always'

TypeScript
FlashDuration?: number | 'always';
Default Value

500ms

Property Value

number | 'always'

FlashTarget

Should a cell or whole row flash

TypeScript
FlashTarget?: FlashTargetTypes | FlashTargetTypes[];
Default Value

'cell'

Property Value

FlashTargetTypes | FlashTargetTypes[]

Name

Name of the Flashing Cell Definition

TypeScript
Name: string;
Property Value

string

NeutralChangeStyle

Style for 'Neutral' value changes

TypeScript
NeutralChangeStyle?: AdaptableStyle;
Default Value

Gray BackColour

Property Value

AdaptableStyle

Rule

When Flashing Cell should be triggered

TypeScript
Rule: FlashingCellRule;
Property Value

FlashingCellRule

Scope

Which Columns, DataTypes or Column Types can Flash

TypeScript
Scope: ColumnScope;
Property Value

ColumnScope

UpChangeStyle

Style for 'Up' value changes

TypeScript
UpChangeStyle?: AdaptableStyle;
Default Value

Green BackColour

Property Value

AdaptableStyle

IsReadOnly

Inherited from AdaptableObject

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

TypeScript
IsReadOnly?: boolean;
Property Value

boolean

IsSuspended

Inherited from SuspendableObject

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

TypeScript
IsSuspended?: boolean;
Property Value

boolean