Java AbstractButton .setVerticalTextPosition (int textPosition)
Syntax
AbstractButton.setVerticalTextPosition(int textPosition) has the following syntax.
public void setVerticalTextPosition(int textPosition)
Example
In the following code shows how to use AbstractButton.setVerticalTextPosition(int textPosition) method.
import java.awt.Color;
/*ww w .ja va 2 s . c o 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);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »