HtmlDocument.Title Property

Definition

Gets or sets the text value of the <TITLE> tag in the current HTML document.

C#
public string Title { get; set; }

Property Value

The title of the current document.

Examples

The following code example creates an HTML hyperlink to the current document using the URL of the document as the link's location and the title of the document as the link text. The code example requires that your application has a WebBrowser control named WebBrowser1.

C#
private void ExportDocumentLink()
{
    if (webBrowser1.Document != null)
    {
        HtmlDocument doc = webBrowser1.Document;
        String link = "<A HREF=\"" + webBrowser1.Document.Url.ToString() + "\">" + webBrowser1.Document.Title + "</A>";

        IDataObject dataObj = Clipboard.GetDataObject();
        dataObj.SetData("HTML", true, (object)link);
    }
}

Remarks

Use the Title property to identify the document by way of a human-readable name.

Changes to this property will also reflect in the DocumentTitle property of the WebBrowser control.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also