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 ]

boolean

Defines whether the action is currently active.

fn

string

The name of the function to be called.

fnParams

IFunction.Value[]

A list of parameters to be transferred to the function defined in fn.

IFunction 1:

Available from version 1.12