IValueResultObject
[ Interface ]
export interface IValueResultObject<T = any> extends TcHmi.IResultObject {
symbol?: string;
value?: T;
}
This interface extends TcHmi.IResultObject.
Describes the return value plus error information for a specific symbol from a request to the TwinCAT HMI server, if applicable.
Properties
Name | Type | Description |
---|---|---|
error | Error code | |
details [ Optional ] | Optional details about error. Content depends on the function used and the error. | |
response | TwinCAT HMI server response object. | |
results [ optional ] | IValueResultObject<R>[] | Return values and possibly error details for the individual symbols from the underlying TwinCAT HMI server request. |
symbol [ optional ] | The name of the symbol. | |
value [ optional ] | The value of the symbol. |
Available from version 1.12 |