mobileFX WebKitX CEF3 ActiveX 4.x
WebKitXCEF3Lib ActiveX Control / WebKitXCEF3 Object / RemoveEventListener 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 public module function passed using the AddressOf operator that was used to bind the event.

The capture flag that was used to bind the event.

In This Topic
    RemoveEventListener Method
    In This Topic
    Description

    Removes an event listener previously set by AddEventListener.

    Syntax
    Visual Basic
    Public Sub RemoveEventListener( _
       ByVal Selector As String, _
       ByVal Event As String, _
       ByVal AddressOfEventHandler As Long, _
       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.

    AddressOfEventHandler

    The Visual Basic public module function passed using the AddressOf operator that was 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 AddEventListener.

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

    See Also