WebBrowser.Print Method

Definition

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

public:
 void Print();
public void Print ();
member this.Print : unit -> unit
Public Sub 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.

// Prints the current document using the current print settings.
void ButtonPrint_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   this->WebBrowser1->Print();
}
// Prints the current document using the current print settings.
private void printButton_Click(object sender, EventArgs e)
{
    webBrowser1.Print();
}
' Prints the current document Imports the current print settings.
Private Sub printButton_Click( _
    ByVal sender As Object, ByVal e As EventArgs) _
    Handles printButton.Click

    webBrowser1.Print()

End Sub

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

See also