mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / OnDebuggerScriptParsed Event

The URL of the Script parsed.

The Script ID of the Script parsed.

The Source of the Script parsed.

If True the script was parsed OK, if False the script failed to parse. In later case a OnDebuggerBreakpointHit event will reveal the location of the error.

In This Topic
    OnDebuggerScriptParsed Event
    In This Topic
    Description

    Fired when a Script is parsed either Chromium or Node.js.

    Syntax
    Visual Basic
    Public Event OnDebuggerScriptParsed( _
       ByVal Debugger As WEBKITX_DEBUGGER, _
       ByVal url As String, _
       ByVal ScriptID As String, _
       ByVal Source As String, _
       ByVal ParsedOK As Boolean _
    )
    Parameters
    Debugger
    ValueDescription
    DEBUGGER_CHROMIUM

    Defines use of Chromium Debugger for WebKitX debugger commands and events.

    DEBUGGER_NODEJSDefines use of node.js Debugger for WebKitX debugger commands and events.
    url

    The URL of the Script parsed.

    ScriptID

    The Script ID of the Script parsed.

    Source

    The Source of the Script parsed.

    ParsedOK

    If True the script was parsed OK, if False the script failed to parse. In later case a OnDebuggerBreakpointHit event will reveal the location of the error.

    Remarks

    It is recommended to fire this event only for Script Errors by setting Settings.enable_script_parsed_ws_events to False.

    See Also