Resource

[ Interface ]

export interface Resource extends TcHmi.IResultObject {
    value: any | null;
    origin: 'control' | 'project' | 'system';
}

This interface extends the TcHmi.IResultObject interface.

Properties

Name

Type

Description

value

any, null

Value of the resource.

origin

'control', 'project', 'system'

The value comes from the control, from the project or (in the event of an error) from the system.

Resource 1:

Available from version 1.10