HtmlElement.ScrollIntoView(Boolean) Method

Definition

Scrolls through the document containing this element until the top or bottom edge of this element is aligned with the document's window.

C#
public void ScrollIntoView(bool alignWithTop);

Parameters

alignWithTop
Boolean

If true, the top of the object will be displayed at the top of the window. If false, the bottom of the object will be displayed at the bottom of the window.

Examples

The following code example finds an element by name and scrolls through the page so that the top of the element is aligned with the top of the visible page.

C#
private void ScrollToElement(String elemName)
{
    if (webBrowser1.Document != null)
    {
        HtmlDocument doc = webBrowser1.Document;
        HtmlElementCollection elems = doc.All.GetElementsByName(elemName);
        if (elems != null && elems.Count > 0)
        {
            HtmlElement elem = elems[0];

            elem.ScrollIntoView(true);
        }
    }
}

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

See also