This notification message is sent by the HTML viewer control to notify the application and provide the title of the HTML document.
At a Glance
Header file: | Htmlctrl.h |
Windows CE versions: | 1.0 and later |
Syntax
NM_TITLE NM_HTMLVIEW *pnmHtmlView = (NM_HTMLVIEW *)lParam;
szTitle = pnmHtmlView->szTarget;
switch(pnmHtmlView->hdr.code) { case NM_TITLE: };
Parameters
pnmHtmlView
Pointer to an NM_HTMLVIEW structure that contains information about the NM_TITLE notification message.
szTitle
Null-terminated string that contains the title of the HTML document.
Return Values
This message does not return a value.
Remarks
The HTML control does not send the NM_TITLE message if the TITLE tag is missing from the HTML document.
See Also