CGXGridCore::UpdateSelectRange
virtual void UpdateSelectRange(const CGXRange& range, const CGXRangeList* pOldRangeList, BOOL bCreateHint);?
range
Reference to the affected range of cells.
pOldRangeList
ointer to a copy of the rangelist before it has been modfied.
bCreateHint
Specifies if a hint should be created.
Remarks
Overridable method which updates the window after selecting or deselecting cells.
The method creates the following hint:
CGXGridHint hint(gxHintUpdateSelectRange, m_nViewID);
hint.range = range;
hint.vptr = (void*) pOldRangeList;
You can override this method if you need to change the hint.
Control-Factory Specific ->
This method 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 ImplementUserSelectRange method from within the control factory class' InitializeGridComponents method will make the concrete implementation of this method available to your application.
If no concrete implementation is available this method performs no action. A warning will be displayed in the debug window.
END Control-Factory Specific