Microsoft XML SDK 2.6 - XML Reference

IXMLDOMDocument::ontransformnode Event

Fires before each node in the style sheet is applied to each node in the XML source.

C/C++Syntax

HRESULT ontransformnode(
    IXMLDOMNode *pCode,
    IXMLDOMNode *pData,
    VARIANT vBool);

Parameters

pCode [in]
Address of the current node in the XSL style sheet.
pData [in]
Address of the current node in the XML source data.
vBool [out]
Boolean return value. Returns True if transformation processing is to continue; returns False to stop transformation processing.

C/C++ Return Values

Returns S_OK if successful, or an error code otherwise.

Remarks

The event handler can be set by explicitly setting the ontransformnode property.

This member is an extension of the W3C DOM.

See Also

IXMLDOMDocument Interface