remove
[ Function ]
public static remove(
symbolName: string,
callback?: null | ((this: void, data: TcHmi.IResultObject) => void)
): TcHmi.IErrorDetails;
Removes a symbol from the server's Historize configuration.
Parameter
Name | Type | Description |
---|---|---|
SymbolName | The name of the symbol. | |
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
TcHmi.Server.Historize.remove('PLC1.MAIN.nInt2', function (data) {
if (data.error === TcHmi.Errors.NONE) {
// Success
} else {
// Error
}
});