| HD$ UnregisterHandler Method |
This function is used to unregister an event handler for an interview event that was registered using the RegisterHandler(String, function, function) method.
JavaScript API: Embedded
Assembly: hotdocs.js Version: 1.0.0.0 (1.0.0.0)
Syntax
JavaScript
function UnregisterHandler(eventName, handler, callback);
Parameters
- eventName
- Type: System
String
A string representing the name of an interview event. You should specify the same string you used when registering the event handler. - handler
- Type: function
The JavaScript function that was registered as an event handler, which you would like to unregister. - callback
- Type: function
A function to call after the handler is unregistered.
See Also