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 | 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. |
Available from version 1.10 |