NM_INLINE_XML

4/8/2010

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 Value

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

Header htmlctrl.h
Library htmlctrl.lib
Windows Mobile Pocket PC 2002 and later, Smartphone 2002 and later

See Also

Reference

HTML Control API Notifications
NM_HTMLVIEWA
NM_HTMLVIEWW