Java Swing Tutorial - Java JList.getFixedCellHeight()








Syntax

JList.getFixedCellHeight() has the following syntax.

public int getFixedCellHeight()

Example

In the following code shows how to use JList.getFixedCellHeight() method.

import java.awt.BorderLayout;
//from  ww  w  . j a va  2s.c  o  m
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JScrollPane;
import javax.swing.event.ListSelectionListener;

public class Main {

  public static void main(final String args[]) {
    String labels[] = { "A", "B", "C", "D", "E" };
    JFrame frame = new JFrame("Sizing Samples");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JList jlist1 = new JList();
    jlist1.setListData(labels);
    
    jlist1.setVisibleRowCount(4);
    JScrollPane scrollPane1 = new JScrollPane(jlist1);
    frame.add(scrollPane1, BorderLayout.NORTH);
    
    int s = jlist1.getFixedCellHeight();
    
    frame.setSize(300, 350);
    frame.setVisible(true);
  }
}