• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JTextFieldのMarginを設定する
#navi(../)
#tags()
RIGHT:Posted by &author(aterai); at 2005-06-06
*JTextFieldのMarginを設定する [#m4b2abe7]
JTextField内部の余白を設定します。
---
category: swing
folder: TextFieldMargin
title: JTextFieldのMarginを設定する
tags: [JTextField, UIManager, Border]
author: aterai
pubdate: 2005-06-06T00:34:45+09:00
description: JTextFieldにMargin、または二重のBorderを設定して、内余白の変化をテストします。
image: https://lh3.googleusercontent.com/_9Z4BYR88imo/TQTVM2PvsXI/AAAAAAAAAnQ/3wxfaHXrEUk/s800/TextFieldMargin.png
---
* 概要 [#summary]
`JTextField`に`Margin`、または二重の`Border`を設定して、内余白の変化をテストします。

-&jnlp;
-&jar;
-&zip;
#download(https://lh3.googleusercontent.com/_9Z4BYR88imo/TQTVM2PvsXI/AAAAAAAAAnQ/3wxfaHXrEUk/s800/TextFieldMargin.png)

//#screenshot
#ref(http://lh3.ggpht.com/_9Z4BYR88imo/TQTVM2PvsXI/AAAAAAAAAnQ/3wxfaHXrEUk/s800/TextFieldMargin.png)

**サンプルコード [#h76ab388]
* サンプルコード [#sourcecode]
#code(link){{
Insets m = UIManager.getInsets("TextField.margin");
InsetsUIResource iur = new InsetsUIResource(m.top,m.left+5,m.bottom,m.right);
InsetsUIResource iur = new InsetsUIResource(m.top, m.left + 5, m.bottom, m.right);
UIManager.put("TextField.margin", iur);
}}
#code{{

Insets m = field01.getMargin();
Insets margin = new Insets(m.top,m.left+10,m.bottom,m.right);
Insets margin = new Insets(m.top, m.left + 10, m.bottom, m.right);
field01.setMargin(margin);
}}
#code{{
Border b1 = BorderFactory.createEmptyBorder(0,20,0,0);

Border b1 = BorderFactory.createEmptyBorder(0, 20, 0, 0);
Border b2 = BorderFactory.createCompoundBorder(field02.getBorder(), b1);
field02.setBorder(b2);
}}

**解説 [#q40dbf8e]
以下のサンプルでは、それぞれ左余白のサイズのみを変更しています。
 javax.swing.plaf.InsetsUIResource[top=2,left=7,bottom=2,right=2]
* 解説 [#explanation]
以下のサンプルでは、それぞれ左側の内余白のサイズのみを変更しています。

- 上
-- UIManager.put()ですべてのJTextFieldの余白を指定しています。
 getMargin().left: 7
 getInsets().left: 8
 getBorder().getBorderInsets(c).left: 8
// javax.swing.plaf.InsetsUIResource[top=2,left=7,bottom=2,right=2]

- 中
-- 一番上 + setMargin()で余白を指定しています。
 getMargin().left: 17
 getInsets().left: 18
 getBorder().getBorderInsets(c).left: 18
- 上: `UIManager.put()`ですべての`JTextField`の余白を指定
-- `getMargin().left`: `7px`
-- `getInsets().left`: `8px`
-- `getBorder().getBorderInsets(c).left`: `8px`
- 中: 「上(`UIManager.put()`)」と`setMargin()`で余白を指定
-- `getMargin().left`: `17px`
-- `getInsets().left`: `18px`
-- `getBorder().getBorderInsets(c).left`: `18px`
- 下: 「上(`UIManager.put()`)」と`setBorder()`で余白を指定
-- `getMargin().left`: `7px`
-- `getInsets().left`: `28px`
-- `getBorder().getBorderInsets(c).left`: `28px`

- 下
-- 一番上 + setBorder()で余白を指定しています。
 getMargin().left: 7
 getInsets().left: 28
 getBorder().getBorderInsets(c).left: 28
* 参考リンク [#reference]
- [[JTextField内にアイコンを追加>Swing/IconTextField]]
- [[JComboBoxにアイコンを表示>Swing/IconComboBox]]

**参考リンク [#l13dc690]
-[[JTextField内にアイコンを追加>Swing/IconTextField]]
-[[JComboBoxにアイコンを表示>Swing/IconComboBox]]

**コメント [#z463c6ec]
* コメント [#comment]
#comment
#comment