FlashingCellDefinition

The Flashing Cell Definition

TypeScript
export interface FlashingCellDefinition extends AdaptableObject,
Extends

AdaptableObject, SuspendableObject

Properties

PropertyTypeDescriptionDefault
DownChangeStyleAdaptableStyleStyle for 'Down' value changesRed BackColour
FlashDurationnumber | 'always'Duration of Flash - can be number (in ms) or 'always'500ms
FlashTargetFlashTargetTypes | FlashTargetTypes[]Should a cell or whole row flash'cell'
NamestringName of the Flashing Cell Definition
NeutralChangeStyleAdaptableStyleStyle for 'Neutral' value changesGray BackColour
RuleFlashingCellRuleWhen Flashing Cell should be triggered
ScopeColumnScopeWhich Columns, DataTypes or Column Types can Flash
UpChangeStyleAdaptableStyleStyle for 'Up' value changesGreen BackColour
IsReadOnlybooleanSets Entity to ReadOnly (overwriting a Strategy Entitlement of 'Full')
IsSuspendedbooleanSuspends (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