PrintDocument.DefaultPageSettings プロパティ

定義

印刷するすべてのページの既定値として使用されるページ設定を取得または設定します。

public:
 property System::Drawing::Printing::PageSettings ^ DefaultPageSettings { System::Drawing::Printing::PageSettings ^ get(); void set(System::Drawing::Printing::PageSettings ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Printing.PageSettings DefaultPageSettings { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.DefaultPageSettings : System.Drawing.Printing.PageSettings with get, set
Public Property DefaultPageSettings As PageSettings

プロパティ値

ドキュメントの既定のページ設定を指定する PageSettings

属性

次のコード例では、ドキュメントのページの向きを横向きに設定し、ドキュメントを印刷します。 この例では、という名前filePathの変数が出力するファイルのパスに設定されていること、イベントを処理PrintPageする という名前pd_PrintPageのメソッドが定義されていること、および という名前printerの変数がプリンターの名前に設定されていることを前提にしています。

この例では、 System.DrawingSystem.Drawing.Printing、および System.IO 名前空間を使用します。

public:
   void Printing()
   {
      try
      {
         streamToPrint = gcnew StreamReader( filePath );
         try
         {
            printFont = gcnew System::Drawing::Font( "Arial",10 );
            PrintDocument^ pd = gcnew PrintDocument;
            pd->PrintPage += gcnew PrintPageEventHandler(
               this, &Form1::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 );
      }
   }
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);
   }
}
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

注釈

プロパティを使用して、いくつかの既定のページ設定を DefaultPageSettings 指定できます。 たとえば、 プロパティは PageSettings.Color ページを色で印刷するかどうかを指定し、 プロパティは PageSettings.Landscape 横向きまたは縦向きを指定し PageSettings.Margins 、 プロパティはページの余白を指定します。

ページ単位で設定を指定するには、 イベントまたは イベントをPrintPage処理し、 または QueryPageSettingsQueryPageSettingsEventArgsに含まれるPrintPageEventArgs引数をそれぞれ変更PageSettingsします。

注意

印刷が開始された後、 プロパティを使用したページ設定の DefaultPageSettings 変更は、印刷されるページには影響しません。

適用対象

こちらもご覧ください