Table of Contents

Method InitMutationNameEvent

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

InitMutationNameEvent(string, bool, bool, INode, string, string)

The InitMutationNameEvent method is used to initialize the value of a IMutationNameEvent created using the IDocumentEvent.CreateEvent method. This method may only be called before the IMutationNameEvent has been dispatched via the IEventTarget.DispatchEvent method, though it may be called multiple times during that phase if necessary. If called multiple times, the final invocation takes precedence.

public void InitMutationNameEvent(string eventType, bool bubbles, bool cancelable, INode relatedNode, string prevNamespaceUri, string prevNodeName)

Parameters

eventType string
bubbles bool
cancelable bool
relatedNode INode
prevNamespaceUri string

Specifies the previous NamespaceUri of the related INode. This value may be null.

prevNodeName string

Specifies the previous NodeName of the related Node.