Table of Contents

Method InitMutationNameEventNs

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

InitMutationNameEventNs(string, string, bool, bool, INode, string, string)

The InitMutationNameEventNs 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.

void InitMutationNameEventNs(string namespaceUri, string typeArg, bool canBubbleArg, bool cancelableArg, INode relatedNodeArg, string prevNamespaceUri, string prevNodeName)

Parameters

namespaceUri string

Specifies the namespace URI associated with this event, or null if the application wish to have no namespace.

typeArg string

Specifies the event type.

canBubbleArg bool

Specifies whether or not the event can bubble.

cancelableArg bool

Specifies whether or not the event's default action can be prevented.

relatedNodeArg INode

Specifies the IEvent's related Node.

prevNamespaceUri string

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

prevNodeName string

Specifies the previous NodeName of the related Node.