initCustomEvent method
[This documentation is preliminary and is subject to change.]
Initializes a new custom event that the createEvent method created.
![]() ![]() |
Syntax
HRESULT retVal = object.initCustomEvent(eventType, canBubble, cancelable, detail);
Standards information
Parameters
eventType [in]
Type: BSTR
A user-defined custom event type.
canBubble [in]
Type: VARIANT_BOOL
VARIANT_TRUE (true)
The event should propagate upward.
VARIANT_FALSE (false)
The event does not propagate upward.
cancelable [in]
Type: VARIANT_BOOL
VARIANT_TRUE (true)
The default action can be canceled.
VARIANT_FALSE (false)
The default action cannot be canceled.
detail [in]
Type: IDispatch
A user-defined object that can contain additional information about the event. This parameter can be NULL. This value is returned in the detail property of the event.
Return value
Type: HRESULT
If this method succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
Build date: 1/23/2012
.png)
.png)