HtmlElementErrorEventArgs.Handled 属性

定义

获取或设置此错误是否已由承载文档的应用程序处理。

public:
 property bool Handled { bool get(); void set(bool value); };
public bool Handled { get; set; }
member this.Handled : bool with get, set
Public Property Handled As Boolean

属性值

如果事件已被处理,则为 true;否则为 false。 默认值为 false

示例

下面的代码示例演示如何禁止显示脚本错误并显示自己的自定义对话框。 此代码示例要求应用程序托管名为 WebBrowserwebBrowser1控件。

private void SuppressScriptErrors()
{
    if (webBrowser1.Document != null)
    {
        webBrowser1.Document.Window.Error += new HtmlElementErrorEventHandler(scriptWindow_Error);
    }
}

private void  scriptWindow_Error(object sender, HtmlElementErrorEventArgs e)
{
    MessageBox.Show("Suppressed error!");
    e.Handled = true;
}
Dim WithEvents ScriptWindow As HtmlWindow

Private Sub SuppressScriptErrors()
    If (WebBrowser1.Document IsNot Nothing) Then
        ScriptWindow = WebBrowser1.Document.Window
    End If
End Sub

Private Sub ScriptWindow_Error(ByVal sender As Object, ByVal e As HtmlElementErrorEventArgs) Handles ScriptWindow.Error
    MessageBox.Show("Suppressed error!")
    e.Handled = True
End Sub

注解

如果要向用户显示自己的自定义错误消息或完全禁止显示错误,请将此属性 true 设置为 。

适用于