TitledBorderのタイトル位置
Total: 9719, Today: 2, Yesterday: 1
Posted by aterai at 
Last-modified: 
Summary
TitledBorderのタイトル位置や揃えを切り替えてテストします。
Screenshot

Advertisement
Source Code Examples
VerticalOrientation vo = (VerticalOrientation) vertChoices.getSelectedItem();
switch (vo) {
  case DEFAULT_POSITION:
    border.setTitlePosition(TitledBorder.DEFAULT_POSITION);
    break;
  case ABOVE_TOP:
    border.setTitlePosition(TitledBorder.ABOVE_TOP);
    break;
  case TOP:
    border.setTitlePosition(TitledBorder.TOP);
    break;
  case BELOW_TOP:
    border.setTitlePosition(TitledBorder.BELOW_TOP);
    break;
  case ABOVE_BOTTOM:
    border.setTitlePosition(TitledBorder.ABOVE_BOTTOM);
    break;
  case BOTTOM:
    border.setTitlePosition(TitledBorder.BOTTOM);
    break;
  case BELOW_BOTTOM:
    border.setTitlePosition(TitledBorder.BELOW_BOTTOM);
    break;
}
Justification jc = (Justification) justificationChoices.getSelectedItem();
switch (jc) {
  case DEFAULT_JUSTIFICATION:
    border.setTitleJustification(TitledBorder.DEFAULT_JUSTIFICATION);
    break;
  case LEFT:
    border.setTitleJustification(TitledBorder.LEFT);
    break;
  case CENTER:
    border.setTitleJustification(TitledBorder.CENTER);
    break;
  case RIGHT:
    border.setTitleJustification(TitledBorder.RIGHT);
    break;
  case LEADING:
    border.setTitleJustification(TitledBorder.LEADING);
    break;
  case TRAILING:
    border.setTitleJustification(TitledBorder.TRAILING);
    break;
}
panel.repaint();
View in GitHub: Java, KotlinDescription
上記のサンプルでは、以下のような定数フィールド値を指定してTitledBorderのタイトル位置や揃えを変更できます。
- タイトルの位置を
TitledBorder#setTitlePosition(int)メソッドで指定TitledBorder.DEFAULT_POSITIONTitledBorder.ABOVE_TOPTitledBorder.TOPTitledBorder.BELOW_TOPTitledBorder.ABOVE_BOTTOMTitledBorder.BOTTOMTitledBorder.BELOW_BOTTOM
 - タイトルの揃えを
TitledBorder#setTitleJustification(int)メソッドで指定TitledBorder.LEFTTitledBorder.CENTERTitledBorder.RIGHTTitledBorder.LEADINGTitledBorder.TRAILING
 
Reference
- TitledBorder (Java Platform SE 8)
 - TitledBorderのタイトルにアイコンを表示する
 - JDK-4199867 TitledBorder MIDDLE Veritcal Alignment - Java Bug System