Microsoft XML 2.5 SDK


 

IXMLDOMDocument::put_ontransformnode Method

[This is preliminary documentation and subject to change.]

Specifies the event handler for the ontransformnode event.

Visual Basic Syntax

oXMLDOMDocument.ontransformnode = funcMyEventHandler

C/C++ Syntax

HRESULT put_ontransformnode(

    VARIANT ontransformnodeSink);

Parameters

ontransformnodeSink

[in]
Name of the function that should be called when a transformation is about to be performed.

Remarks

A transformation involves two trees: the XML source and the style sheet that is applied to it. The ontransformnode event fires before each node in the style sheet is applied to each node in the XML source.

The ontransformnode property provides a way for developers to specify their own event handler that overrides the default handler.

See Also

transformNode