How can I avoid headers being hidden in the bottom/right splitter pane?
Normally, when splitting a view it would look ugly if row or column headers are displayed twice. However, if you would like to display row and column headers even in the second pane, you need to override IsRowHidden( ) and IsColHidden( ):
BOOL myView::IsRowHidden(...)
{
return CGXGridCore::IsRowHidden(...)
// note: it is important to call CGXGridCore not CGXGridView
}
IsColHidden( ) the same way.