WebBrowser.Print Method

Definition

Prints the document currently displayed in the WebBrowser control using the current print and page settings.

C#
public void Print();

Examples

The following code example demonstrates how to use the Print method to implement a Print button for the WebBrowser control that's similar to the one in Internet Explorer. This example requires that your form contains a WebBrowser control called webBrowser1 and a Button control called ButtonPrint.

C#
// Prints the current document using the current print settings.
private void printButton_Click(object sender, EventArgs e)
{
    webBrowser1.Print();
}

Remarks

You can use this method to implement a Print button similar to the one in Internet Explorer. This method prints the current document without requiring further user input. To display the Print dialog box prior to printing, use the ShowPrintDialog method. To display the Page Setup dialog box, which lets your users specify header and footer values and other page settings, use the ShowPageSetupDialog method. To display the Print Preview dialog box, use the ShowPrintPreviewDialog method.

Applies to

Product Versions
.NET Framework 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, 10

See also