Java JTable Row Height setRowHeight(JTable table, int row)

Here you can find the source of setRowHeight(JTable table, int row)

Description

set Row Height

License

LGPL

Declaration

public static void setRowHeight(JTable table, int row) 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import javax.swing.JTable;

public class Main {
    public static void setRowHeight(JTable table, int row) {
        table.setRowHeight(row);//  w  w  w  .  jav a  2 s  .  c  o m
    }
}

Related

  1. correctRowHeight(JTable table)
  2. getPreferredRowHeight(JTable table, int rowIndex, int margin)
  3. getRowBounds(JTable table, int row, int height)
  4. packRowHeights(final JTable table)
  5. platformTableRowHeight(JTable jtab, boolean forEdit)
  6. updateRowHeights(JTable table)