インタフェース
javax.print.attribute.PrintRequestAttributeSetの使用
-
PrintRequestAttributeSetを使用しているパッケージ パッケージ 説明 java.awt.print このパッケージは、汎用印刷APIで使用するクラスおよびインタフェースを提供します。javax.print Java™Print Service APIの主なクラスとインタフェースを提供します。javax.print.attribute Java™Print Serviceの属性のタイプと属性セットへの属性の収集方法を記述するクラスとインタフェースを提供します。javax.swing すべてのプラットフォーム上で可能なかぎり同じように機能する「軽量」(Java共通言語)コンポーネントのセットを提供します。javax.swing.text 編集可能なテキスト・コンポーネントと編集不能なテキスト・コンポーネントを処理するクラスとインタフェースを提供します。 -
-
java.awt.printでのPrintRequestAttributeSetの使用
PrintRequestAttributeSet型のパラメータを持つjava.awt.print内のメソッド 修飾子と型 メソッド 説明 PageFormat
PrinterJob. getPageFormat(PrintRequestAttributeSet attributes)
このジョブの現在のPrintService
でサポートされる値と一致する値(つまり、getPrintService()
で返される値)、およびattributes
に格納されたメディア、印刷可能領域、印刷方向を使用して、PageFormat
を計算します。PageFormat
PrinterJob. pageDialog(PrintRequestAttributeSet attributes)
共通プラットフォームのページ設定ダイアログを表示する簡易メソッドです。void
PrinterJob. print(PrintRequestAttributeSet attributes)
属性セットの設定を使用してページのセットを印刷します。boolean
PrinterJob. printDialog(PrintRequestAttributeSet attributes)
共通プラットフォームのすべてのサービスに対する印刷ダイアログを表示する簡易メソッドです。Pageable
インタフェースを使用して2Dグラフィックスの印刷が可能です。 -
javax.printでのPrintRequestAttributeSetの使用
PrintRequestAttributeSet型のパラメータを持つjavax.print内のメソッド 修飾子と型 メソッド 説明 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)
印刷サービス(プリンタ)選択用ダイアログをユーザーに提供します。 -
javax.print.attributeでのPrintRequestAttributeSetの使用
PrintRequestAttributeSetを実装したjavax.print.attribute内のクラス 修飾子と型 クラス 説明 class
HashPrintRequestAttributeSet
HashPrintRequestAttributeSetクラスは、その実装をHashAttributeSet
クラスから継承し、PrintRequestAttributeSet
インタフェースの意味上の制限を適用します。PrintRequestAttributeSetを返すjavax.print.attribute内のメソッド 修飾子と型 メソッド 説明 static PrintRequestAttributeSet
AttributeSetUtilities. synchronizedView(PrintRequestAttributeSet attributeSet)
指定された印刷要求の属性セットの同期ビューを作成します。static PrintRequestAttributeSet
AttributeSetUtilities. unmodifiableView(PrintRequestAttributeSet attributeSet)
指定された印刷要求の属性セットの変更不可能なビューを作成します。PrintRequestAttributeSet型のパラメータを持つjavax.print.attribute内のメソッド 修飾子と型 メソッド 説明 static PrintRequestAttributeSet
AttributeSetUtilities. synchronizedView(PrintRequestAttributeSet attributeSet)
指定された印刷要求の属性セットの同期ビューを作成します。static PrintRequestAttributeSet
AttributeSetUtilities. unmodifiableView(PrintRequestAttributeSet attributeSet)
指定された印刷要求の属性セットの変更不可能なビューを作成します。PrintRequestAttributeSet型のパラメータを持つjavax.print.attribute内のコンストラクタ コンストラクタ 説明 HashPrintRequestAttributeSet(PrintRequestAttributeSet attributes)
初期状態で指定されたセットの値で生成された属性セットの新しい空の属性セットを構築します。ここでは、属性セットのメンバーは(PrintRequestAttributeSe
インタフェースに制限されます。 -
javax.swingでのPrintRequestAttributeSetの使用
PrintRequestAttributeSet型のパラメータを持つjavax.swing内のメソッド 修飾子と型 メソッド 説明 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
を印刷します。 -
javax.swing.textでのPrintRequestAttributeSetの使用
PrintRequestAttributeSet型のパラメータを持つjavax.swing.text内のメソッド 修飾子と型 メソッド 説明 boolean
JTextComponent. print(MessageFormat headerFormat, MessageFormat footerFormat, boolean showPrintDialog, PrintService service, PrintRequestAttributeSet attributes, boolean interactive)
このJTextComponent
の内容を印刷します。
-