FlipView.removeEventListener method

Removes an event handler for the specified event that the addEventListener method registered.
Syntax
flipView.removeEventListener(type, listener, useCapture);
Parameters
- type
-
Type: String
The name of the event.
- listener
-
Type: Function
The event handler function to remove.
- useCapture
-
Type: Boolean
Set to true to unregister the event handler for the capturing phase; otherwise, set to false to unregister the event handler for the bubbling phase.
Return value
This method does not return a value.
Requirements
|
Minimum WinJS version |
WinJS 3.0 |
|---|---|
|
Namespace |
WinJS.UI |
See also
Show: