PrintDialog.Document Özellik

Tanım

elde PrinterSettingsetmek için kullanılan değerini belirtir PrintDocument veya alır.

C#
public System.Drawing.Printing.PrintDocument Document { get; set; }
C#
public System.Drawing.Printing.PrintDocument? Document { get; set; }

Özellik Değeri

PrintDocument elde PrinterSettingsetmek için kullanılır. Varsayılan değer: null.

Örnekler

Aşağıdaki kod örneği, , ShowHelpve Document özelliklerini ayarlamak için denetimin AllowSomePagesnasıl kullanılacağını PrintDialog gösterir. Bu örneği çalıştırmak için, aşağıdaki kodu adlı bir denetimi ve adlı PrintDialog1Button1bir PrintDialog düğmeyi içeren bir forma yapıştırın. Bu örnek, düğmenin Click olayının ve olayının PrintPagedocToPrint bu örnekte tanımlanan olay işleme yöntemlerine bağlı olmasını gerektirir.

C#

// Declare the PrintDocument object.
private System.Drawing.Printing.PrintDocument docToPrint = 
    new System.Drawing.Printing.PrintDocument();

// This method will set properties on the PrintDialog object and
// then display the dialog.
private void Button1_Click(System.Object sender, 
    System.EventArgs e)
{

    // Allow the user to choose the page range he or she would
    // like to print.
    PrintDialog1.AllowSomePages = true;

    // Show the help button.
    PrintDialog1.ShowHelp = true;

    // Set the Document property to the PrintDocument for 
    // which the PrintPage Event has been handled. To display the
    // dialog, either this property or the PrinterSettings property 
    // must be set 
    PrintDialog1.Document = docToPrint;

    DialogResult result = PrintDialog1.ShowDialog();

    // If the result is OK then print the document.
    if (result==DialogResult.OK)
    {
        docToPrint.Print();
    }
}

// The PrintDialog will print the document
// by handling the document's PrintPage event.
private void document_PrintPage(object sender, 
    System.Drawing.Printing.PrintPageEventArgs e)
{

    // Insert code to render the page here.
    // This code will be called when the control is drawn.

    // The following code will render a simple
    // message on the printed document.
    string text = "In document_PrintPage method.";
    System.Drawing.Font printFont = new System.Drawing.Font
        ("Arial", 35, System.Drawing.FontStyle.Regular);

    // Draw the content.
    e.Graphics.DrawString(text, printFont, 
        System.Drawing.Brushes.Black, 10, 10);
}

Şunlara uygulanır

Ürün Sürümler
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

Ayrıca bkz.