Scrolls through the document containing this element until the top or bottom edge of this element is aligned with the document's window.
Public Sub ScrollIntoView ( _ alignWithTop As Boolean _ )
public void ScrollIntoView( bool alignWithTop )
public: void ScrollIntoView( bool alignWithTop )
member ScrollIntoView : alignWithTop:bool -> unit
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.
Private Sub ScrollToElement(ByVal ElemName As String) If (WebBrowser1.Document IsNot Nothing) Then With WebBrowser1.Document Dim Elems As HtmlElementCollection = .All.GetElementsByName(ElemName) If (Not Elems Is Nothing And Elems.Count > 0) Then Dim Elem As HtmlElement = Elems(0) Elem.ScrollIntoView(True) End If End With End If End Sub
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); } } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2