WebBrowser.ShowPrintDialog 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
開啟 Internet Explorer 的 [列印] 對話方塊,而不設定頁首和頁尾值。
public:
void ShowPrintDialog();
public void ShowPrintDialog ();
member this.ShowPrintDialog : unit -> unit
Public Sub ShowPrintDialog ()
範例
下列程式碼範例示範如何使用 ShowPrintDialog 方法來實作類似 Internet Explorer檔案功能表上的 [列印]功能表選項。 此範例會要求您的表單包含一個功能表項目名為 MenuItemFilePrint
的功能表,以及 WebBrowser 名為 的控制項 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
備註
您可以使用此方法來實作類似 Internet Explorer檔案功能表上的 [列印]功能表項目。 此方法會顯示 [ 列印 ] 對話方塊,讓使用者在列印之前修改列印設定。 若要讓使用者在列印之前指定頁面設定,請使用 ShowPageSetupDialog 方法。 若要顯示 [ 預覽列印 ] 對話方塊,請使用 ShowPrintPreviewDialog 方法。