initUIEvent method
Initializes a new user interface event that the IDocumentEvent::createEvent method created.
![]() ![]() |
Syntax
HRESULT retVal = object.initUIEvent(eventType, canBubble, cancelable, view, detail);
Parameters
- eventType [in]
-
Type: BSTR
One of the following values, or a user-defined custom event type.
-
An HTMLImgEvents::onabort event.
-
An HTMLLinkElementEvents::onerror event.
-
An HTMLFrameSiteEvents::onload event.
-
An HTMLTextContainerEvents::onselect event.
-
An HTMLFrameSiteEvents::onresize event.
- canBubble [in]
-
Type: VARIANT_BOOL
- cancelable [in]
-
Type: VARIANT_BOOL
- view [in]
-
Type: IHTMLWindow2
An IHTMLWindow2 variable that specifies the active window, or NULL. This value is returned in the IDOMUIEvent::view property of the event. - detail [in]
-
Type: long
Anlong value that specifies additional information. This value is returned in the IDOMUIEvent::detail property of the event.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Standards information
- Document Object Model (DOM) Level 3 Events Specification, Section 5.2.1
Show:

