Products we use.
We use and recommend following products. If you know of a better product let us know and we will review it. Click on the Logos for more information.
Returns a pointer to the cell object at a specified location inside the outer area at bottom. If there is no object associated with the cell, the method allows you to assign a new object for this cell in two ways. The first is to set the pInitRTC pointer to the runtime class object for the required cell type. The alternative way is to set the bAutoFindValue to true (pInitRTC should be NULL). In this case, the new cell object will be copied from the default object associated with the given row or column.
CExtGridCell * GridCellGetOuterAtBottom( LONG nColNo, LONG nRowNo, CRuntimeClass * pInitRTC = NULL, bool bAutoFindValue = true, bool bUseColumnDefaultValue = true ); constCExtGridCell * GridCellGetOuterAtBottom( LONG nColNo, LONG nRowNo, CRuntimeClass * pInitRTC = NULL, bool bAutoFindValue = true, bool bUseColumnDefaultValue = true ) const;
Parameters
- nColNo
- Column index.
- nRowNo
- Row index.
- pInitRTC
- Pointer to the runtime class object which should be assigned to the cell that hasn't had any associated object. It should specify the CExtGridCell class, a class derived from CExtGridCell, or be set to NULL.
- bAutoFindValue
- Specifies that the new cell object will be copied from the default object associated with the given row or column if bAutoFindValue is set to true. This feature is only available if the pInitRTC parameter is set to NULL.
- bUseColumnDefaultValue
- Specifies that the default cell object associated with (instead of default row value) for the automatic creation of the cell object; this parameter is used only when the bAutoFindValue is set to true and the pInitRTC parameter is set to NULL.