java命名空间javax.swing枚举jtable.printmode的类成员方法:
fit_width定义及介绍
本文导语:
fit_width
public static final jtable.printmode fit_width
按比例将输出缩小的打印模式(如果必要),以便每页可以放入表的整个宽度(这样就能够放入所有的列);如果必要,行可以分散到多页。
values
public static final jtable.printmode[...
public static final jtable.printmode fit_width
- 按比例将输出缩小的打印模式(如果必要),以便每页可以放入表的整个宽度(这样就能够放入所有的列);如果必要,行可以分散到多页。
public static final jtable.printmode[] values()
- returns an array containing the constants of this enum constants
iis7站长之家, in
the order they are declared. this method may be used to iterate
over the constants as follows:
for(jtable.printmode c : jtable.printmode.values())
system.out.println(c);
- 返回:
- an array containing the constants of this enum type, in
the order they are declared