Java examples for Swing:JLabel
Set Vertical Alignment of JLabel
import javax.swing.JApplet; import javax.swing.JLabel; public class Main { public void init(){ JLabel label1 = new JLabel("JLabel Get Horizontal Alignment Example."); int alignment = label1.getVerticalAlignment(); /*from ww w . ja va 2 s . c o m*/ switch(alignment){ case JLabel.LEFT: label1.setText("Left"); break; case JLabel.CENTER: label1.setText("Center"); break; case JLabel.RIGHT: label1.setText("Right"); break; case JLabel.LEADING: label1.setText("Leading"); break; case JLabel.TRAILING: label1.setText("Trailing"); break; } label1.setVerticalAlignment(JLabel.CENTER); } }