Fired when you execute in JavaScript the console.log function.
The message printed to the console.
The source script.
The source line of the script.
Fired when you execute in JavaScript the console.log function.
Visual Basic |
---|
Public Event OnConsoleMessage( _ ByVal ConsoleMessage As String, _ ByVal Source As String, _ ByVal Line As Long _ ) |
The message printed to the console.
The source script.
The source line of the script.
Private Sub WebKitX1_OnConsoleMessage(ByVal ConsoleMessage As String, ByVal Source As String, ByVal Line As Long) On Error Resume Next AddLog Source & "(" & Line & "): " & ConsoleMessage End Sub
private void WebKitXCEF31_OnConsoleMessage(object sender, AxWebKitXCEF3Lib._DWebKitXCEF3Events_OnConsoleMessageEvent e) { AddLog(e.source + "(" + e.line + "):" + e.consoleMessage); }