Visual Studio 2010 - Visual C++
EVENT_DELEGATE_ENTRY
Creates an entry in the delegate map.
EVENT_DELEGATE_ENTRY( MEMBER, ARG0, ARG1 );
Parameters
Remarks
Each entry in the delegate map corresponds to a managed event handler delegate created by MAKE_DELEGATE.
Example
The following code example shows how to use EVENT_DELEGATE_ENTRY to create an entry in the delegate map for the OnClick event handler; also see the code example in MAKE_DELEGATE. For more information, see How to: Sink Windows Forms Events from Native C++ Classes.
Visual C++
BEGIN_DELEGATE_MAP(CMyView) EVENT_DELEGATE_ENTRY(OnClick, System::Object^, System::EventArgs^) END_DELEGATE_MAP()
Requirements
Header: msclr\event.h
See Also