To set all columns to a fixed width of 10, use this code or modify it to your needs.
for (int i = 0; i < table.getColumnCount(); i++){ table.getColumn(table.getColumnName(i)).setMaxWidth(10); table.getColumn(table.getColumnName(i)).setMinWidth(10);
}
Keine Kommentare:
Kommentar veröffentlichen