WebBrowser.Print 方法

定义

使用当前打印和页面设置打印当前显示在 WebBrowser 控件中的文档。

public:
 void Print();
public void Print ();
member this.Print : unit -> unit
Public Sub Print ()

示例

下面的代码示例演示如何使用 Print 方法实现WebBrowser与 Internet Explorer 中的控件类似的“打印”按钮。 此示例要求窗体包含一 WebBrowser 个名为 的 webBrowser1 控件和一 Button 个名为 的 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

注解

可以使用此方法实现类似于 Internet Explorer 中的 打印 按钮。 此方法打印当前文档,而无需进一步的用户输入。 若要在打印之前显示“ 打印 ”对话框,请使用 ShowPrintDialog 方法。 若要显示“ 页面设置 ”对话框(允许用户指定页眉和页脚值以及其他页面设置),请使用 ShowPageSetupDialog 方法。 若要显示“ 打印预览 ”对话框,请使用 ShowPrintPreviewDialog 方法。

适用于

另请参阅