Return value of deleteVariableHandleMulti()

interface DeleteVariableHandleMultiResult {
    error: boolean;
    errorCode: number;
    errorStr?: string;
    handle: number | VariableHandle;
    success: boolean;
}

Hierarchy (view full)

Properties

error: boolean

True if response has error (ADS or our own customer error)

errorCode: number

ADS error code (0 = no error, -1 = other than ADS error)

errorStr?: string

ADS error string

handle: number | VariableHandle

Variable handle

success: boolean

True if handle was deleted successfully