| 4001 | } |
| 4002 | |
| 4003 | void AFDataArrayTableCtrl::ShowCol(const int& col, bool show) |
| 4004 | { |
| 4005 | if (col > -1 && col < m_grid->GetNumberCols()) |
| 4006 | { |
| 4007 | if (show) |
| 4008 | m_grid->ShowCol(col); |
| 4009 | else |
| 4010 | m_grid->HideCol(col); |
| 4011 | this->Layout(); |
| 4012 | } |
| 4013 | } |
| 4014 | |
| 4015 | void AFDataArrayTableCtrl::SetColReadOnly(const int& col, bool readonly) |
| 4016 | { |
no test coverage detected