Uses of Interface
javax.print.attribute.PrintRequestAttributeSet
-
Packages that use PrintRequestAttributeSet 软件包 描述 java.awt.print 为常规打印API提供类和接口。javax.print 提供Java™打印服务API的主要类和接口。javax.print.attribute 提供描述Java™打印服务属性类型的类和接口,以及如何将它们收集到属性集中。javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。 -
-
Uses of PrintRequestAttributeSet in java.awt.print
Methods in java.awt.print with parameters of type PrintRequestAttributeSet 变量和类型 方法 描述 PageFormat
PrinterJob. getPageFormat(PrintRequestAttributeSet attributes)
计算PageFormat
,其值与此作业的当前PrintService
支持的值(即getPrintService()
返回的值)以及attributes
包含的介质,可打印区域和方向attributes
。PageFormat
PrinterJob. pageDialog(PrintRequestAttributeSet attributes)
一种显示跨平台页面设置对话框的便捷方法。void
PrinterJob. print(PrintRequestAttributeSet attributes)
使用属性集中的设置打印一组页面。boolean
PrinterJob. printDialog(PrintRequestAttributeSet attributes)
一种便捷方法,可显示所有能够使用Pageable
界面打印2D图形的服务的跨平台打印对话框。 -
Uses of PrintRequestAttributeSet in javax.print
Methods in javax.print with parameters of type PrintRequestAttributeSet 变量和类型 方法 描述 void
DocPrintJob. print(Doc doc, PrintRequestAttributeSet attributes)
使用指定的作业属性打印文档。void
MultiDocPrintJob. print(MultiDoc multiDoc, PrintRequestAttributeSet attributes)
使用指定的作业属性打印MultiDoc
。static PrintService
ServiceUI. printDialog(GraphicsConfiguration gc, int x, int y, PrintService[] services, PrintService defaultService, DocFlavor flavor, PrintRequestAttributeSet attributes)
向用户显示用于选择打印服务(打印机)的对话框。 -
Uses of PrintRequestAttributeSet in javax.print.attribute
Classes in javax.print.attribute that implement PrintRequestAttributeSet 变量和类型 类 描述 class
HashPrintRequestAttributeSet
类HashPrintRequestAttributeSet
从类继承其实现HashAttributeSet
和强制执行接口的语义限制PrintRequestAttributeSet
。Methods in javax.print.attribute that return PrintRequestAttributeSet 变量和类型 方法 描述 static PrintRequestAttributeSet
AttributeSetUtilities. synchronizedView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的同步视图。static PrintRequestAttributeSet
AttributeSetUtilities. unmodifiableView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的不可修改视图。Methods in javax.print.attribute with parameters of type PrintRequestAttributeSet 变量和类型 方法 描述 static PrintRequestAttributeSet
AttributeSetUtilities. synchronizedView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的同步视图。static PrintRequestAttributeSet
AttributeSetUtilities. unmodifiableView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的不可修改视图。Constructors in javax.print.attribute with parameters of type PrintRequestAttributeSet 构造器 描述 HashPrintRequestAttributeSet(PrintRequestAttributeSet attributes)
构造一个新的属性集,最初使用给定集合中的值填充,其中属性集的成员仅限于(PrintRequestAttributeSe
接口。 -
Uses of PrintRequestAttributeSet in javax.swing
Methods in javax.swing with parameters of type PrintRequestAttributeSet 变量和类型 方法 描述 boolean
JTable. print(JTable.PrintMode printMode, MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintRequestAttributeSet attr, boolean interactive)
按照功能齐全的print
方法的指定打印此表,并将默认打印机指定为打印服务。boolean
JTable. print(JTable.PrintMode printMode, MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintRequestAttributeSet attr, boolean interactive, PrintService service)
打印这JTable
。 -
Uses of PrintRequestAttributeSet in javax.swing.text
Methods in javax.swing.text with parameters of type PrintRequestAttributeSet 变量和类型 方法 描述 boolean
JTextComponent. print(MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintService service, PrintRequestAttributeSet attributes, boolean interactive)
打印此JTextComponent
的内容。
-