Programmatically scrolling TWebResponsiveGrid to bottom

Is there a method to scroll the TWebResponsiveGrid to the selected item?

You could use:

var
el: TJSHTMLElement;
begin
el := webresponsivegrid1.ElementHandle;
el.scrollTop := scrollposinpixels;
end;

Thanks, the responsive grid was contained in a scroll box so needed to scroll that instead.

el := SwingScrollBox.ElementHandle;
el.scrollTop := el.scrollHeight;