IFunction
[ Interface ]
export interface IFunction {
objectType: 'Function';
active?: boolean;
fn: string;
fnParams: IFunction.Value[];
}
Defines parameters for calling a TwinCAT HMI function.
Properties
Name | Type | Description |
---|---|---|
objectType | 'Function' | Defines the relevant parser. |
active [ optional ] | Defines whether the action is currently active. | |
fn | The name of the function to be called. | |
fnParams | A list of parameters to be transferred to the function defined in fn. |
Available from version 1.12 |