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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 Modifier and Type Class 描述 class
HashPrintRequestAttributeSet
HashPrintRequestAttributeSet类继承自HashAttributeSet
类的实现,并强制接口PrintRequestAttributeSet
的语义限制。Methods in javax.print.attribute that return PrintRequestAttributeSet Modifier and Type 方法 描述 static PrintRequestAttributeSet
AttributeSetUtilities. synchronizedView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的同步视图。static PrintRequestAttributeSet
AttributeSetUtilities. unmodifiableView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的不可修改的视图。Methods in javax.print.attribute with parameters of type PrintRequestAttributeSet Modifier and Type 方法 描述 static PrintRequestAttributeSet
AttributeSetUtilities. synchronizedView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的同步视图。static PrintRequestAttributeSet
AttributeSetUtilities. unmodifiableView(PrintRequestAttributeSet attributeSet)
创建给定打印请求属性集的不可修改的视图。Constructors in javax.print.attribute with parameters of type PrintRequestAttributeSet Constructor 描述 HashPrintRequestAttributeSet(PrintRequestAttributeSet attributes)
构造一个新的属性集,最初使用给定集合中的值进行填充,其中属性集的成员被限制为(PrintRequestAttributeSe
接口。 -
Uses of PrintRequestAttributeSet in javax.swing
Methods in javax.swing with parameters of type PrintRequestAttributeSet Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 boolean
JTextComponent. print(MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintService service, PrintRequestAttributeSet attributes, boolean interactive)
打印JTextComponent
的内容。
-