WriteToSymbol
[ Interface ]
export interface WriteToSymbol extends baseAction {
objectType: 'WriteToSymbol';
symbolExpression: string | null;
value: IFunction.Value;
}
Extends baseAction
Defines an action of type WriteToSymbol.
An action that is used to write a value to a specific symbol.
Properties
Name | Type | Description |
---|---|---|
active [ optional ] | Defines whether the action is active or inactive. | |
collapsed [ optional ] | Defines whether the action is collapsed or expanded in the Actions & Conditions Editor. | |
asyncWait | Defines whether or not asynchronous actions should wait until the end of the action is signaled before the following action is executed. | |
success | Action[] | A list of actions to be performed in case of success. |
error | Action[] | A list of actions to be performed in case of an error. |
objectType | 'WriteToSymbol' | Defines the relevant parser. |
SymbolExpression | Symbol expression | |
value | Value to be written to the symbol defined via symbolExpression. |
Available from version 1.12 |