EventObject.cancelBubble Property

SharePoint Designer Developer Reference

Returns or sets a Boolean that represents whether the current event should bubble up the hierarchy of event handlers. True disables bubbling for this event, preventing the next event handler in the hierarchy from receiving the event.

Syntax

expression.cancelBubble

expression   Required. A variable that represents an EventObject object.

Remarks

Using this property to cancel bubbling for an event does not affect subsequent events.

See Also