Example usage for javax.swing AbstractButton getVerticalAlignment

List of usage examples for javax.swing AbstractButton getVerticalAlignment

Introduction

In this page you can find the example usage for javax.swing AbstractButton getVerticalAlignment.

Prototype

public int getVerticalAlignment() 

Source Link

Document

Returns the vertical alignment of the text and icon.

Usage

From source file:Main.java

public static void main(String[] args) {
    AbstractButton jb = new JToggleButton("Press Me");
    jb.setSelected(true);//w  ww.  j  a v a  2s  .c  o m
    System.out.println(jb.getVerticalAlignment());

    JFrame f = new JFrame();
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(jb);
    f.pack();
    f.setVisible(true);
}

From source file:Main.java

public static String layoutCustomButton(AbstractButton b, Icon icon, Rectangle viewRect, Rectangle iconRect,
        Rectangle textRect) {//  www  . j ava  2  s .c  om
    return layoutComponent(b, b.getText(), icon, b.getIconTextGap(), b.getVerticalAlignment(),
            b.getHorizontalAlignment(), b.getVerticalTextPosition(), b.getHorizontalTextPosition(), viewRect,
            iconRect, textRect);
}