TWebScrollbox set bar position

Hi
I'm using TWebScrollBox to display several Div created by code.
Each Div contains details about a marker in a GoogleMap. When a marker is clicked I get enough details to define targeted Div in TWebScrollBox, so I would like to automatically vertical scroll to display the rigth panel by defining the position of scrollbar

Unfortunately, it seems there isn't property available in web core to define position like

MyWebScrollBox.VertScrollBar.Position:= 500; 

If IDE accepts code completion, compilation generates an error (Identifer not found 'Position')

Is there a way to be able to set position of a scrollbar in web core ?

Thanks
Sylvain

To programmatically control the scroll position in a TWebScrollBox use:

WebScrollBox.ScrollLeft: integer;
WebScrollBox.ScrollTop: integer;

Hi
issue solved with a simple reference to elementid to child DIV with location

location.href = "#";
location.href = "elementID_name";

then the scrollbar of parent Div scrollto the right chid DIv directly without defining the position of scroll.

Thanks

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.