Called by the framework when any worksheet is recalculated
virtual void OnSheetCalculate( LPDISPATCH dispWorksheet ); |
Pointer to dispatch interface of type Excel.Worksheet.
This function is called whenever a worksheet is recalculated, at the end of the recalculation process.
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.
Note that the function is called once for each worksheet that is recalculated, at the end of the sheet's recalculation.
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().
Header: xllplus.h
CXllApp Class | CXllApp Methods | CXllApp::OnSheetDeactivate() | CXllApp::OnWorkbookActivate() | CXllApp::OnSheetSelectionChange()