PrintPageEventArgs.HasMorePages 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
추가 페이지를 인쇄해야 할지 여부를 나타내는 값을 가져오거나 설정합니다.
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
입니다.
예제
다음 코드 예제에서는 명명 printButton
된 Button 및 PrintDocument 라는 가 pd
에 Form생성되었다고 가정합니다. 에 Click 대한 Button 이벤트가 메서드와 printButton_Click
연결되어 있고 PrintPage 의 이벤트가 예제의 PrintDocument 메서드와 pd_PrintPage
연결되어 있는지 확인합니다. 예제의 메서드는 printButton_Click
이벤트를 발생시키는 Print 메서드를 PrintPage 호출하고 메서드에 pd_PrintPage
지정된 .bmp 파일을 출력합니다. 이 예제를 실행하려면 인쇄할 비트맵의 경로를 변경합니다.
이 예제에서는 System.Drawing, System.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방법을 보여 주는 또 다른 예제는 방법: Windows Forms 다중 페이지 텍스트 파일 인쇄를 참조하세요.
적용 대상
추가 정보
.NET