WebBrowser.DocumentTitleChanged Event

Definition

Occurs when the DocumentTitle property value changes.

public:
 event EventHandler ^ DocumentTitleChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler DocumentTitleChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler? DocumentTitleChanged;
[<System.ComponentModel.Browsable(false)>]
member this.DocumentTitleChanged : EventHandler 
Public Custom Event DocumentTitleChanged As EventHandler 
Public Event DocumentTitleChanged As EventHandler 

Event Type

Attributes

Examples

The following code example demonstrates how to use a handler for the DocumentTitleChanged event to update the form title bar with the title of the current document. This example requires that your form contains a WebBrowser control called webBrowser1.

For the complete code example, see How to: Add Web Browser Capabilities to a Windows Forms Application.

// Updates the title bar with the current document title.
void WebBrowser1_DocumentTitleChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
   this->Text = WebBrowser1->DocumentTitle;
}
// Updates the title bar with the current document title.
private void webBrowser1_DocumentTitleChanged(object sender, EventArgs e)
{
    this.Text = webBrowser1.DocumentTitle;
}
' Updates the title bar with the current document title.
Private Sub webBrowser1_DocumentTitleChanged( _
    ByVal sender As Object, ByVal e As EventArgs) _
    Handles webBrowser1.DocumentTitleChanged

    Me.Text = webBrowser1.DocumentTitle

End Sub

Remarks

You can handle this event to update the title bar of your application with the current value of the DocumentTitle property.

For more information about handling events, see Handling and Raising Events.

Applies to

See also