다음을 통해 공유


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입니다.

예제

다음 코드 예제에서는 명명 printButtonButtonPrintDocument 라는 가 pdForm생성되었다고 가정합니다. 에 Click 대한 Button 이벤트가 메서드와 printButton_Click 연결되어 있고 PrintPage 의 이벤트가 예제의 PrintDocument 메서드와 pd_PrintPage 연결되어 있는지 확인합니다. 예제의 메서드는 printButton_Click 이벤트를 발생시키는 Print 메서드를 PrintPage 호출하고 메서드에 pd_PrintPage 지정된 .bmp 파일을 출력합니다. 이 예제를 실행하려면 인쇄할 비트맵의 경로를 변경합니다.

이 예제에서는 System.Drawing, System.Drawing.PrintingSystem.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방법을 보여 주는 또 다른 예제는 방법: Windows Forms 다중 페이지 텍스트 파일 인쇄를 참조하세요.

적용 대상

추가 정보