java命名空间javax.swing枚举layoutstyle.componentplacement的类成员方法:
indent定义及介绍
本文导语:
indent
public static final layoutstyle.componentplacement indent
一个枚举值,指示被请求组件要缩排的距离。例如,经常从标签中水平缩排该标签的子元素。要确定此类间隙的首选距离,使用 indent 类型。
此值通常只与 east 或 west 方向一...
public static final layoutstyle.componentplacement indent
- 一个枚举值,指示被请求组件要缩排的距离。例如,经常从标签中水平缩排该标签的子元素。要确定此类间隙的首选距离,使用
indent
类型。
此值通常只与 east
或 west
方向一起使用。
public static final layoutstyle.componentplacement[] values()
- returns an array containing the constants of this enum type, in
the order they are declared. this method may be used to iterate
over the constants as follows:
for(layoutstyle.componentplacement c : layoutstyle.componentplacement.values())
system.out.println(c);
- 返回:
- an array containing the constants of this enum type, in
the order they are declared