PrintPageEventArgs.HasMorePages プロパティ

定義

追加のページを印刷するかどうかを示す値を取得または設定します。

public:
 property bool HasMorePages { bool get(); void set(bool value); };
public bool HasMorePages { get; set; }
member this.HasMorePages : bool with get, set
Public Property HasMorePages As Boolean

プロパティ値

追加のページを印刷する場合は true。それ以外の場合は false。 既定値は、false です。

次のコード例では、 で Button 名前付き と PrintDocument というprintButton名前pdが作成Formされていることを前提としています。 のClickイベントButtonが メソッドにprintButton_Click関連付けられていることを確認し、 のPrintPagePrintDocumentイベントが例の メソッドにpd_PrintPage関連付けられていることを確認します。 この例の メソッドは printButton_Click 、 イベントを Print 発生させる メソッドを PrintPage 呼び出し、 メソッドで指定された .bmp ファイルを pd_PrintPage 出力します。 この例を実行するには、印刷するビットマップへのパスを変更します。

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

private:
   // Specifies what happens when the user clicks the Button.
   void printButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      try
      {
         pd->Print();
      }
      catch ( Exception^ ex ) 
      {
         MessageBox::Show( "An error occurred while printing", ex->ToString() );
      }
   }

   // Specifies what happens when the PrintPage event is raised.
   void pd_PrintPage( Object^ /*sender*/, PrintPageEventArgs^ ev )
   {
      // Draw a picture.
      ev->Graphics->DrawImage( Image::FromFile( "C:\\My Folder\\MyFile.bmp" ),
         ev->Graphics->VisibleClipBounds );
      
      // Indicate that this is the last page to print.
      ev->HasMorePages = false;
   }

// Specifies what happens when the user clicks the Button.
 private void printButton_Click(object sender, EventArgs e) 
 {
   try 
   {
     // Assumes the default printer.
     pd.Print();
   }  
   catch(Exception ex) 
   {
     MessageBox.Show("An error occurred while printing", ex.ToString());
   }
 }
 
 // Specifies what happens when the PrintPage event is raised.
 private void pd_PrintPage(object sender, PrintPageEventArgs ev) 
 {      
   // Draw a picture.
   ev.Graphics.DrawImage(Image.FromFile("C:\\My Folder\\MyFile.bmp"), ev.Graphics.VisibleClipBounds);
      
   // Indicate that this is the last page to print.
   ev.HasMorePages = false;
 }
' Specifies what happens when the user clicks the Button.
Private Sub printButton_Click(sender As Object, e As EventArgs) _
Handles printButton.Click
    Try
       pd.Print()
    Catch ex As Exception
        MessageBox.Show("An error occurred while printing", _
            ex.ToString())
    End Try
End Sub    

' Specifies what happens when the PrintPage event is raised.
Private Sub pd_PrintPage(sender As Object, ev As PrintPageEventArgs) _
Handles pd.PrintPage

    ' Draw a picture.
    ev.Graphics.DrawImage(Image.FromFile("C:\My Folder\MyFile.bmp"), _
        ev.Graphics.VisibleClipBounds)
    
    ' Indicate that this is the last page to print.
    ev.HasMorePages = False
End Sub

の使用方法HasMorePagesを示す別の例については、「How to: Print a Multi-Page Text File in Windows フォーム」を参照してください。

適用対象

こちらもご覧ください