Table of Contents

Method StopImmediatePropagation

Namespace
SharpVectors.Dom.Events
Assembly
SharpVectors.Core.dll

StopImmediatePropagation()

(DOM Level 3 Experimental) Immediately prevent event listeners of the same group to be triggered.

void StopImmediatePropagation()

Remarks

This method is used to prevent event listeners of the same group to be triggered and, unlike StopPropagation its effect is immediate. Once it has been called, further calls to that method have no additional effect.

Note: This method does not prevent the default action from being invoked; use PreventDefault for that effect.

See Also