Java JTable Column Width Set setColumnWidth(JTable table, int columnNumber, int width)

Here you can find the source of setColumnWidth(JTable table, int columnNumber, int width)

Description

set Column Width

License

Open Source License

Declaration

public static void setColumnWidth(JTable table, int columnNumber,
            int width) 

Method Source Code

//package com.java2s;
/**//from w  ww.  j  a  v  a 2s  . co  m
 * ************************************************************************
 * * The contents of this file are subject to the MRPL 1.2
 * * (the  "License"),  being   the  Mozilla   Public  License
 * * Version 1.1  with a permitted attribution clause; you may not  use this
 * * file except in compliance with the License. You  may  obtain  a copy of
 * * the License at http://www.floreantpos.org/license.html
 * * Software distributed under the License  is  distributed  on  an "AS IS"
 * * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * * License for the specific  language  governing  rights  and  limitations
 * * under the License.
 * * The Original Code is FLOREANT POS.
 * * The Initial Developer of the Original Code is OROCUBE LLC
 * * All portions are Copyright (C) 2015 OROCUBE LLC
 * * All Rights Reserved.
 * ************************************************************************
 */

import javax.swing.JTable;

import javax.swing.table.TableColumn;

public class Main {
    public static void setColumnWidth(JTable table, int columnNumber,
            int width) {
        TableColumn column = table.getColumnModel().getColumn(columnNumber);

        column.setPreferredWidth(width);
        column.setWidth(width);
        //      column.setMaxWidth(width);
        //      column.setMinWidth(width);
    }
}

Related

  1. setColumnSize(TableColumnModel cm, int id, int percent, int tablesize, boolean resizeable)
  2. setColumnSizes(JTable table, double[] percentages)
  3. setColumnsSize(TableColumnModel cm, int tablesize)
  4. setColumnWidth(JTable table, int columnIdx, int width)
  5. setColumnWidth(JTable table, int columnIndex, int preferredWidth)
  6. setColumnWidth(JTable table, int... width)
  7. setColumnWidth(JTable table, int[] colWidth)
  8. setColumnWidths(int[] preferredColWidths, int[] maxColWidths, int[] minColWidths, TableColumnModel columnModel, boolean[] columnsShowing)
  9. setColumnWidths(JTable p_Table, int[] p_ColumnWidths)