AbstractButton.setVerticalTextPosition(int textPosition) has the following syntax.
public void setVerticalTextPosition(int textPosition)
In the following code shows how to use AbstractButton.setVerticalTextPosition(int textPosition) method.
import java.awt.Color; /* ww w. j a v a2s . co m*/ import javax.swing.AbstractButton; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; public class Main { public static void main(String[] args) { AbstractButton jb = new JButton("Press Me"); jb.addChangeListener(new ChangeListener() { public void stateChanged(ChangeEvent ev) { System.out.println("ChangeEvent!"); } }); jb.setVerticalTextPosition(20); JFrame f = new JFrame(); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.getContentPane().add(jb); f.pack(); f.setVisible(true); } }