BEGIN_EVENT_MAP

 

Begins the definition of your event map.

Syntax

BEGIN_EVENT_MAP(
theClass
, 
baseClass )

Parameters

  • theClass
    Specifies the name of the control class whose event map this is.

  • baseClass
    Specifies the name of the base class of theClass.

Remarks

In the implementation (.cpp) file that defines the member functions for your class, start the event map with the BEGIN_EVENT_MAP macro, then add macro entries for each of your events, and complete the event map with the END_EVENT_MAP macro.

For more information on event maps and the BEGIN_EVENT_MAP macro, see the article ActiveX Controls: Events.

Requirements

Header: afxctl.h

See Also

MFC Macros and Globals
DECLARE_EVENT_MAP
END_EVENT_MAP