PrintPageEventArgs.Graphics Eigenschaft

Definition

Ruft das Graphics ab, das zum Zeichnen der Seite verwendet wird.

public:
 property System::Drawing::Graphics ^ Graphics { System::Drawing::Graphics ^ get(); };
public System.Drawing.Graphics Graphics { get; }
public System.Drawing.Graphics? Graphics { get; }
member this.Graphics : System.Drawing.Graphics
Public ReadOnly Property Graphics As Graphics

Eigenschaftswert

Das Graphics, das zum Zeichnen der Seite verwendet wird.

Beispiele

Im folgenden Codebeispiel wird davon ausgegangen, dass ein Button benannter printButton und ein PrintDocument benannter pd auf einem Formerstellt wurden. Stellen Sie sicher, dass das Click Ereignis für den Button der printButton_Click -Methode und das PrintPage -Ereignis der PrintDocument -Methode im Beispiel zugeordnet pd_PrintPage ist. Die printButton_Click -Methode aus dem Beispiel ruft die Print -Methode auf, die das PrintPage -Ereignis auslöst, und gibt die in der pd_PrintPage -Methode angegebene .bmp Datei aus. Um dieses Beispiel auszuführen, ändern Sie den Pfad zu der Bitmap, die Sie drucken möchten.

Verwenden Sie die System.DrawingNamespaces , System.Drawing.Printingund System.Windows.Forms für dieses Beispiel.

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

Gilt für:

Weitere Informationen