WebBrowser.ShowPrintPreviewDialog Method

Definition

Opens the Internet Explorer Print Preview dialog box.

C#
public void ShowPrintPreviewDialog();

Examples

The following code example demonstrates how to use the ShowPrintPreviewDialog method to implement a Print Preview menu option similar to the one on the Internet Explorer File menu. This example requires that your form contains a menu with a menu item called MenuItemFilePrintPreview.

For the complete code example, see How to: Add Web Browser Capabilities to a Windows Forms Application.

C#
// Displays the Print Preview dialog box.
private void printPreviewToolStripMenuItem_Click(
    object sender, EventArgs e)
{
    webBrowser1.ShowPrintPreviewDialog();
}

Remarks

You can use this method to implement a Print Preview menu item that is similar to the one on the Internet Explorer File menu. This method displays the Print Preview dialog box, which users see how the current document will appear if it is printed. To let your users specify page settings prior to printing, use the ShowPageSetupDialog method. To print the current document, use the Print method or the ShowPrintDialog method.

Applies to

Produkt Verzie
.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