WebControl scrolling

  • Thread starter Thread starter Pitaridis Aristotelis
  • Start date Start date
P

Pitaridis Aristotelis

I have to scroll the contents of a WebControl down to the bottom
programmatically. Does anyone know how to do it?



Aristotelis
 
I have to scroll the contents of a WebControl down to the bottom
programmatically. Does anyone know how to do it?

What kind of HTML does the control generate? If it's an iframe holding a
separate page then you could add a bookmark at the bottom of the inner page
HTML and call it
 
The way I use the WebControl is like this.
WebBrowser1.DocumentText = "<B>Hello world!</B>"
I use the DocumentText property in order to set the HTML source code.

OK, I see what you mean now.

Not sure then. Does the WebBrowser control have a ScrollToCaret() or
AppendText() method?
 
The way I use the WebControl is like this.

WebBrowser1.DocumentText = "<B>Hello world!</B>"

I use the DocumentText property in order to set the HTML source code.
 
I did not find any of these two member functions. I have spent a lot of time
trying to find a way to scroll the information of a WebBrowser control but I
did not find anything.



I am sure that there is a way to do it but I can not find it.



I have done other more difficult things with this control



Aristotelis
 
Back
Top