java命名空间javax.print.attribute.standard类printerresolution的类成员方法:
printerresolution定义及介绍
本文导语:
printerresolution
public printerresolution(int crossfeedresolution,
int feedresolution,
int units)
根据给定的项构造新的 printerresolution 属性。
参数:crossfeedresolution - cross 进纸分辨...
printerresolution
public printerresolution(int crossfeedresolution,
int feedresolution,
int units)
- 根据给定的项构造新的 printerresolution 属性。
- 参数:
crossfeedresolution
- cross 进纸分辨率。feedresolution
- 进纸分辨率。units
- 单位转换因子,例如 resolutionsyntax.dpi
或 resolutionsyntax.>dpcm
。
- 抛出:
illegalargumentexception
- (未经检查的异常)如果 crossfeedresolution
< 1 或 feedresolution
< 1,或者 units
< 1。
public boolean equals(object object)
- 返回此 printerresolution 属性是否等效于传入的对象。若要等效,以下所有条件都必须为 true:
-
object
不为 null。
-
object
是类 printerresolution 的一个实例。
-
此属性的 cross 进纸分辨率与
object
的 cross 进纸分辨率相等。
-
此属性的进纸分辨率与
object
的进纸分辨率相等。
- 覆盖:
- 类
resolutionsyntax
中的 equals
- 参数:
object
- 要比较的对象。
- 返回:
- 如果
object
等效于此 printerresolution 属性,则返回 true,否则返回 false
iis7站长之家。 - 另请参见:
object.hashcode()
,
hashtable