addEx
[ Function ]
public static addEx(
symbolName: string,
settings: TcHmi.Server.Historize.IEntrySettings,
requestOptions: TcHmi.Server.IRequestOptions | null,
callback?: null | ((this: void, data: TcHmi.IResultObject) => void) = null
): TcHmi.IErrorDetails;
Adds a symbol to the server's Historize configuration.
Parameter
Name | Type | Description |
---|---|---|
SymbolName | The name of the symbol. | |
settings | The settings of the entry in the Historize- configuration. | |
requestOptions | Server request options | |
callback [ optional ] | null | (data: TcHmi.IResultObject) => void | Asynchronous callback function that is triggered once the action is completed. |
Return value
Type | Description |
---|---|
Returns confirmation as to whether the operation was successfully sent. |
Available from version 1.10 |
Sample - JavaScript
var settings = {
INTERVAL: 'PT0.1S',
MAXENTRIES: 10000,
ROWLIMIT: 10000,
RECORDINGENABLED: true,
};
TcHmi.Server.Historize.addEx('PLC1.MAIN.nInt2', settings, {timeout: 2000}, function (data) {
if (data.error === TcHmi.Errors.NONE) {
// Success
} else {
// Error
}
});