winccoa-manager
    Preparing search index...

    Enumeration WinccoaSysConEvent

    Enumerates the event types that can be used with WinccoaSysConnect. For each event, there is a corresponding data type containing the details of the event.

    For details of the events, see also CTRL function sysConnect().

    NOTE

    The following events available in CTRL are not available in TypeScript/JavaScript:

    Event Alternative
    "exitRequested" use process.prependListener('exit', ...) instead
    "fswPathChanged" use fs.watch() or related methods instead
    "reportRequested" not supported

    NB: it is essential to use process.prependListener() (and not process.on() or process.addListener()) to ensure that the exit listener is executed before the connection to WinCC OA is closed.

    Index

    Enumeration Members

    Dist: "dist"

    Get notified when DIST status changed. Listener will be called with WinccoaSysConDist containing details.

    DpAlias: "dpAlias"

    Get notified when a datapoint alias changes. Listener will be called with WinccoaSysConDpChanged containing details.

    DpCreated: "dpCreated"

    Get notified when a datapoint has been created. Listener will be called with WinccoaSysConDpDetails containing details.

    DpDeleted: "dpDeleted"

    Get notified when a datapoint has been deleted. Listener will be called with WinccoaSysConDpDetails containing details.

    DpDescription: "dpDescription"

    Get notified when a datapoint description changes. Listener will be called with WinccoaSysConDpDescription containing details.

    DpFormatUnit: "dpFormatUnit"

    Get notified when a datapoint format and/or unit changes. Listener will be called with WinccoaSysConDpFormatUnit containing details.

    DpRenamed: "dpRenamed"

    Get notified when a datapoint has been renamed. Listener will be called with WinccoaSysConDpChanged containing details.

    DpTypeChanged: "dpTypeChanged"

    Get notified when a datapoint type has been changed. Listener will be called with WinccoaSysConDpTypeChanged containing details.

    DpTypeCreated: "dpTypeCreated"

    Get notified when a datapoint type has been created. Listener will be called with WinccoaSysConDpTypeDetails containing details.

    DpTypeDeleted: "dpTypeDeleted"

    Get notified when a datapoint type has been deleted. Listener will be called with WinccoaSysConDpTypeDetails containing details.

    Redu: "redu"

    Get notified when REDU status changed. Listener will be called with WinccoaSysConRedu containing details.