Adds an event handler for a named event on the HTML Document Object Model (DOM).
Public Sub AttachEventHandler ( _ eventName As String, _ eventHandler As EventHandler _ )
public void AttachEventHandler( string eventName, EventHandler eventHandler )
public: void AttachEventHandler( String^ eventName, EventHandler^ eventHandler )
member AttachEventHandler : eventName:string * eventHandler:EventHandler -> unit
The Managed Document Object Model (DOM) exposes only a select number of events. Most of the unexposed events are only defined for specific types of elements; such as the submit event, which is valid only on FORM elements. Use AttachEventHandler to add an event handler to these unexposed events.
You should not attach an event to the document or one of its objects until the document has completed loading. The earliest you should call this method is in the DocumentCompleted event of the WebBrowser control.
For more information about the available unmanaged events, see Accessing Unexposed Members on the Managed HTML Document Object Model and the IHTMLElement interfaces: IHTMLElement, IHTMLElement2, IHTMLElement3, IHTMLElement4.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2