NM_META

This notification message is sent by the HTML viewer control to notify the application and provide the HTTP-EQUIV and CONTENT parameters of the META tag in the HTML document.

At a Glance

Header file: Htmlctrl.h
Windows CE versions: 1.0 and later

Syntax

NM_META NM_HTMLVIEW *pnmHtmlView = (NM_HTMLVIEW *)lParam; szHTTPEQUIV = pnmHtmlView->szTarget; szCONTENT = pnmHtmlView->szData; switch(pnmHtmlView->hdr.code) { case NM_META: };

Parameters

pnmHtmlView

Pointer to an NM_HTMLVIEW structure that contains information about the NM_META notification message.

szHTTPEQUIV

Null-terminated string that contains the contents of the HTTP-EQUIV parameter of the META tag in the HTML document.

szCONTENT

Null-terminated string that contains the contents of the CONTENT parameter of the META tag in the HTML document.

Return Values

This message does not return a value.

Remarks

The HTML control sends the NM_TITLE message once for each META tag in the HTML document.

See Also

NM_HTMLVIEW