QxTableView::QxTableView(QWidget *parent)
: QTableView(parent)
void QxTableView::moveSection(int from, int to)
{
verticalHeader()->moveSection(from, to);
}
void QxTableView::swapSections(int first, int second)
{
verticalHeader()->swapSections(first , second);
}
Bookmarks