Java AbstractButton .getVerticalTextPosition ()
Syntax
AbstractButton.getVerticalTextPosition() has the following syntax.
public int getVerticalTextPosition()
Example
In the following code shows how to use AbstractButton.getVerticalTextPosition() method.
/*from w w w .j a va 2 s . c o m*/
import javax.swing.AbstractButton;
import javax.swing.JFrame;
import javax.swing.JToggleButton;
public class Main {
public static void main(String[] args) {
AbstractButton jb = new JToggleButton("Press Me");
jb.setSelected(true);
System.out.println(jb.getVerticalTextPosition());
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 »