次の方法で共有


PageSettings クラス

単一の印刷ページに適用する設定を指定します。

この型のすべてのメンバの一覧については、PageSettings メンバ を参照してください。

System.Object
   System.Drawing.Printing.PageSettings

<ComVisible(False)>
Public Class PageSettings   Implements ICloneable
[C#]
[ComVisible(false)]
public class PageSettings : ICloneable
[C++]
[ComVisible(false)]
public __gc class PageSettings : public ICloneable
[JScript]
public
   ComVisible(false)
class PageSettings implements ICloneable

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

このクラスを使用して、ページの印刷方法を変更する設定を指定します。通常、 PrintDocument.DefaultPageSettings プロパティを使用して、印刷するすべてのページに既定の設定を指定します。ページごとに設定を指定するには、 PrintDocument.PrintPage イベントまたは PrintDocument.QueryPageSettings イベントを処理し、それぞれ PrintPageEventArgs または QueryPageSettingsEventArgs に含まれる PageSettings 引数を変更します。

PrintDocument イベント処理の詳細については、 PrintDocument クラスのトピックの概要を参照してください。印刷の詳細については、 System.Drawing.Printing 名前空間のトピックを参照してください。

使用例

[Visual Basic, C#, C++] PrintDocument.DefaultPageSettings プロパティを使用して文書の既定の用紙方向を横に設定し、 Print メソッドを使用して文書を印刷する例を次に示します。この例は、次の 3 つのことを前提にしています。変数 filePath が印刷するファイルのパスに設定されていること、 PrintPage イベントを処理するメソッド pd_PrintPage が定義されていること、変数 printer がプリンタ名に設定されていることです。

[Visual Basic, C#, C++] この例では、 System.DrawingSystem.Drawing.Printing 、および System.IO の各名前空間を使用します。

 
Public Sub Printing()
    Try
        streamToPrint = New StreamReader(filePath)
        Try
            printFont = New Font("Arial", 10)
            Dim pd As New PrintDocument()
            AddHandler pd.PrintPage, AddressOf pd_PrintPage
            pd.PrinterSettings.PrinterName = printer
            ' Set the page orientation to landscape.
            pd.DefaultPageSettings.Landscape = True
            pd.Print()
        Finally
            streamToPrint.Close()
        End Try
    Catch ex As Exception
        MessageBox.Show(ex.Message)
    End Try
End Sub
       

[C#] 
public void Printing() {
   try {
     streamToPrint = new StreamReader (filePath);
     try {
       printFont = new Font("Arial", 10);
       PrintDocument pd = new PrintDocument(); 
       pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
       pd.PrinterSettings.PrinterName = printer;
       // Set the page orientation to landscape.
       pd.DefaultPageSettings.Landscape = true;
       pd.Print();
     } 
     finally {
       streamToPrint.Close() ;
     }
   } 
   catch(Exception ex) { 
     MessageBox.Show(ex.Message);
   }
 }
 

[C++] 
public:
void Printing() {
   try {
     streamToPrint = new StreamReader (filePath);
     try {
       printFont = new Font(S"Arial", 10);
       PrintDocument* pd = new PrintDocument(); 
       pd->PrintPage += new PrintPageEventHandler(this, &Sample::pd_PrintPage);
       pd->PrinterSettings->PrinterName = printer;
       // Set the page orientation to landscape.
       pd->DefaultPageSettings->Landscape = true;
       pd->Print();
     } 
     __finally {
       streamToPrint->Close() ;
     }
   } 
   catch(Exception* ex) { 
     MessageBox::Show(ex->Message);
   }
 }
 

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Drawing.Printing

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

アセンブリ: System.Drawing (System.Drawing.dll 内)

参照

PageSettings メンバ | System.Drawing.Printing 名前空間 | PrintDocument | PrinterSettings