Java JTable Column Width Set SetPreferedColumnWIdth(JTable table, int[] widths)

Here you can find the source of SetPreferedColumnWIdth(JTable table, int[] widths)

Description

Set Prefered Column W Idth

License

Apache License

Declaration

public static void SetPreferedColumnWIdth(JTable table, int[] widths) 

Method Source Code

//package com.java2s;
/*/*from  w w w  . j av  a2 s  . c om*/
 * Copyright 2004-2007 the Seasar Foundation and the Others.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, 
 * either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

import javax.swing.JTable;

public class Main {
    public static void SetPreferedColumnWIdth(JTable table, int[] widths) {

        for (int i = 0; i < widths.length; i++) {
            table.getColumnModel().getColumn(i).setPreferredWidth(widths[i]);
        }

    }
}

Related

  1. setColumnWidths(JTable table, Insets insets, boolean setMinimum, boolean setMaximum)
  2. setColumnWidths(JTable table, Insets insets, boolean setMinimum, boolean setMaximum)
  3. setDefaultColumnWidth(JTable table, int column)
  4. setMaxnimumColumnWidths(final JTable table, final int... widths)
  5. setOptimalColumnWidth(final JTable table, final int col)
  6. setPreferredColumnWidths(final JTable table, final float[] columnWeigths, final boolean includeHeader)
  7. setPreferredRowHeights(final JTable table)
  8. setRelativeColumnWidths(JTable table, int... widths)
  9. setTableColWidth(JTable table, int column, int width)