Template Canvas set scrollbar position?

It is possible, you can access the underlying JScrollPane from Ignition as explained here: Scroll bar is slow

Once you have the JScrollPane, you can set the view rectangle on it (search for Java docs to set that). Then the scrollbars will adjust until that rectangle is visible.

Setting the scrollbar position directly isn’t possible AFAIK, but setting the view rectangle is more robust anyway.