CGXGridCore::UpdateAllViews
virtual void UpdateAllViews(CWnd* pSender, LPARAM lHint, CObject* pHint);
pSender
Points to the view that modified the document; it is NULL if all views should be updated.
lHint
Contains information about the modifications.
pHint
Points to an object storing information about the modifications.
Remarks
Overridable method which is called to notify all views that the document has been modified (if the grid is bound to a document). The method is overridden in CGXGridView and passes its arguments to CDocument::UpdateAllViews.
Control-Factory Specific ->
The Update-Hint mechanism has been implemented using the abstraction mechanism as discussed in the chapter "Reducing the size of your application" in the user's guide. A call to the ImplementUpdateHint method from within the control factory class' InitializeGridComponents method will make the concrete implementation of this mechanism available to your application.
If no concrete implementation is available calling EnableHints will have no effect. A warning will be displayed in the debug window.
END Control-Factory Specific