Return value of createVariableHandleMulti()

interface CreateVariableHandleMultiResult {
    error: boolean;
    errorCode: number;
    errorStr?: string;
    handle?: VariableHandle;
    path: string;
    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

Created handle (if any)

path: string

Full variable path in the PLC (such as GVL_Test.ExampleStruct)

success: boolean

True if handle was created successfully