mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / RemoveEventListenerEx Method

CSS3 Selector used to bind the event.

If you are unfamiliar with CSS3 Selectors have a look in Finding the correct CSS3 Selector article.

Event name used to bind the event.

The Visual Basic 6 object instance such as a Form or a Class used to bind the event.

The public function in the object instance used to bind the event.

The capture flag that was used to bind the event.

In This Topic
    RemoveEventListenerEx Method
    In This Topic
    Description

    Removes an event listener previously set by AddEventListenerEx.

    Syntax
    Visual Basic
    Public Sub RemoveEventListenerEx( _
       ByVal Selector As String, _
       ByVal Event As String, _
       ByVal vbObject As Object, _
       ByVal vbObjectFunctionName As String, _
       ByVal UseCapture As Boolean _
    ) 
    Parameters
    Selector

    CSS3 Selector used to bind the event.

    If you are unfamiliar with CSS3 Selectors have a look in Finding the correct CSS3 Selector article.

    Event

    Event name used to bind the event.

    vbObject

    The Visual Basic 6 object instance such as a Form or a Class used to bind the event.

    vbObjectFunctionName

    The public function in the object instance used to bind the event.

    UseCapture

    The capture flag that was used to bind the event.

    Remarks

    To remove an event listener you must provide the exact same argument you used in AddEventListenerEx.

    Event listeners are automatically cleared when a new page is loaded.

    See Also