NM_INLINE_XML

Send Feedback

This notification message is sent by the HTML viewer control to notify the application that XML was loaded.

Syntax

NM_INLINE_XML
NM_HTMLVIEW * pnmHTMLView = (NM_HTMLVIEW *)lParam;
szSRCText = pnmHTMLView->szTarget;
vbASYNC = (VARIANT_BOOL) pnmHTMLView->szData;
pXMLDocument = (IXMLDOMDocument *)pnmHTMLView->dwCookie;

Parameters

  • pnmHTMLView
    Points to an NM_HTMLVIEW structure that contains information about the NM_INLINE_XML notification message.
  • vbASYNC
    Specifies if the XML document is being loaded asynchronously. This specifies the ASYNC attribute of the <XML> tag in the HTML document. If no ASYNC attribute is specified, the default is FALSE (load synchronously).
  • pXMLDocument
    Points to an IXMLDOMDocument interface.

Return Values

If the application handles this message it should return a non-zero result. Passing a zero result to the HTML control will result in the default control handing to occur.

Remarks

This notification message is only sent if the ID and SRC attributes of the XML tag are specified in the HTML loaded by the HTML viewer control.

Requirements

Pocket PC: Pocket PC 2002 and later
Smartphone: Smartphone 2002 and later
OS Versions: Windows CE 3.0 and later
Header: htmlctrl.h
Library: htmlctrl.lib

See Also

HTML Control API Notifications | NM_HTMLVIEWA | NM_HTMLVIEWW

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.