RemoveHandler
From Real Software Documentation
Language Keyword
Removes an event handler that was added by AddHandler. You need to match the AddHandler call.
Syntax
RemoveHandler <event> , <method>
| Part | Description |
|---|---|
| event | The event is handled by a method. |
| method | The method that handles the event. |
Example
This example removes the work of the AddHandler example. Please see that example for a description of how it works.
RemoveHandler t.Action, AddressOf MyTimeOut
This removes the handler that was added by the example in AddHandler.
See Also
AddHandler statement.
