XLL+ Class Library (7.0)

CXllApp::OnWorkbookActivate

Called by the framework when a workbook is activated

virtual void OnWorkbookActivate(
   LPDISPATCH dispWorkbook
);

Parameters

dispWorkbook

Pointer to dispatch interface of type Excel.Workbook.

Remarks

This function is called whenever a workbook is activated, just after the corresponding OnWorkbookDeactivate event for the previously active workbook.

Note that it will only be called if event-sinking is switched on (using CXllApp::SetSinkEvents()).

You can override the method in your application class to react to the event. The default method does nothing.

Implementation note

You should only implement this function if you need access to Excel's COM interfaces. To handle events, you should usually use the event model. If you particularly need to call an add-in function to handle the event, use the much simpler mechanism provided by CXllApp::SetComEventHandler().

Requirements

Header: xllplus.h

See Also

CXllApp Class | CXllApp Methods | CXllApp::OnWorkbookDeactivate() | CXllApp::OnSheetActivate() | CXllApp::OnSheetDeactivate()