bubbles property
Gets a value that indicates whether an event propagates up from the event target.
Syntax
HRESULT value = object.get_bubbles(* p);
Property values
Type: VARIANT_BOOL
VARIANT_TRUE (true)
The event bubbles upward.
VARIANT_FALSE (false)
The event does not bubble.
Standards information
Remarks
When you create a custom event by using the IDocumentEvent::createEvent method, you can set the IDOMEvent::bubbles property by using the IDOMEvent::initEvent method.
See also
Reference