WebBrowser.ShowPrintDialog Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Opens the Internet Explorer Print dialog box without setting header and footer values.
public:
void ShowPrintDialog();
public void ShowPrintDialog ();
member this.ShowPrintDialog : unit -> unit
Public Sub ShowPrintDialog ()
Examples
The following code example demonstrates how to use the ShowPrintDialog method to implement a Print menu option that is similar to the one on the Internet Explorer File menu. This example requires that your form contains a menu with a menu item called MenuItemFilePrint
and a WebBrowser control called webBrowser1.
// Displays the Print dialog box.
void MenuItemFilePrint_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
this->WebBrowser1->ShowPrintDialog();
}
// Displays the Print dialog box.
private void printToolStripMenuItem_Click(object sender, EventArgs e)
{
webBrowser1.ShowPrintDialog();
}
' Displays the Print dialog box.
Private Sub printToolStripMenuItem_Click( _
ByVal sender As Object, ByVal e As EventArgs) _
Handles printToolStripMenuItem.Click
webBrowser1.ShowPrintDialog()
End Sub
Remarks
You can use this method to implement a Print menu item that is similar to the one on the Internet Explorer File menu. This method displays the Print dialog box, which lets your users modify print settings prior to printing. To let your users specify page settings prior to printing, use the ShowPageSetupDialog method. To display the Print Preview dialog box, use the ShowPrintPreviewDialog method.