DisableCellEditControl();
bool done = m_table->InsertRows( pos, numRows );
- m_numRows = m_table->GetNumberRows();
return done;
// the table will have sent the results of the insert row
if ( m_table )
{
bool done = m_table && m_table->AppendRows( numRows );
- m_numRows = m_table->GetNumberRows();
return done;
// the table will have sent the results of the append row
// operation to this view object as a grid table message
DisableCellEditControl();
bool done = m_table->DeleteRows( pos, numRows );
- m_numRows = m_table->GetNumberRows();
return done;
// the table will have sent the results of the delete row
// operation to this view object as a grid table message
DisableCellEditControl();
bool done = m_table->InsertCols( pos, numCols );
- m_numCols = m_table->GetNumberCols();
return done;
// the table will have sent the results of the insert col
// operation to this view object as a grid table message
if ( m_table )
{
bool done = m_table->AppendCols( numCols );
- m_numCols = m_table->GetNumberCols();
return done;
// the table will have sent the results of the append col
// operation to this view object as a grid table message
DisableCellEditControl();
bool done = m_table->DeleteCols( pos, numCols );
- m_numCols = m_table->GetNumberCols();
return done;
// the table will have sent the results of the delete col
// operation to this view object as a grid table message