Visual Studio 2010 - Visual C++
BEGIN_DHTML_EVENT_MAP_INLINE
Marks the beginning of the DHTML event map within the class definition for className.
BEGIN_DHTML_EVENT_MAP_INLINE(className )
Parameters
Remarks
Add a DHTML event map to your class to provide information to CDHtmlDialog that can be used to route events fired by HTML elements or ActiveX controls in a web page to handler functions in your class.
Place the BEGIN_DHTML_EVENT_MAP macro in the class's definition (.h) file followed by DHTML_EVENT macros for the events the class is to handle (for example, DHTML_EVENT_ONMOUSEOVER for mouseover events). Use the END_DHTML_EVENT_MAP_INLINE macro to mark the end of the event map. These macros implement the following function:
virtual const DHtmlEventMapEntry* GetDHtmlEventMap();
Requirements
Header: afxdhtml.h
See Also