java命名空间java.awt.print类printerjob的类成员方法:
pagedialog定义及介绍
本文导语:
pagedialog
public pageformat pagedialog(printrequestattributeset attributes)
throws headlessexception
显示跨平台页面设置对话框的便捷方法。可用的选择将反映当前在此 printerjob 上设置的打印服务。
输入的 attributes 参数将反映用...
pagedialog
public pageformat pagedialog(printrequestattributeset attributes)
throws headlessexception
- 显示跨平台页面设置对话框的便捷方法。可用的选择将反映当前在此 printerjob 上设置的打印服务。
输入的 attributes 参数将反映用户对话框中最初选择所需的客户端。未指定 attributes 时使用该服务的默认应用程序显示。返回时,它将反映用户的选择。可以更新选择,以与当前选择的打印服务支持的值一致。
返回值为 pageformat,它等于 printrequestattributeset 中选择的值。如果用户取消对话框,则 attributes 将不会反映用户进行的任何更改,并且返回值将为 null。
- 参数:
attributes
- 对于输入,该参数是为用户提供的属性;对于输出,内容将更新以反映用户的选择。此参数不可以为 null。
- 返回:
- 如果用户不取消该对话框,则返回页面格式;否则返回
null
。
- 抛出:
headlessexception
- 如果 graphicsenvironment.isheadless() 返回 true。
nullpointerexception
- 如果 attributes
参数为 null。- 从以下版本开始:
- 1.4
- 另请参见:
graphicsenvironment.isheadless()