MFC
TRY
Expand Minimize
This topic has not yet been rated - Rate this topic

ON_OLEVERB 

This macro defines a message map entry that maps a custom verb to a specific member function of your control.


ON_OLEVERB(idsVerbName, memberFxn )

Parameters

idsVerbName

The string resource ID of the verb's name.

memberFxn

The function called by the framework when the verb is invoked.

The resource editor can be used to create custom verb names that are added to your string table.

The function prototype for memberFxn is:


        BOOL memberFxn(
   LPMSG lpMsg,
   HWND hWndParent,
   LPCRECT lpRect 
);

The values of the lpMsg, hWndParent, and lpRect parameters are taken from the corresponding parameters of the IOleObject::DoVerb member function.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.