The HTML element to be scrolled into view.
Defines the transition animation. Can be 'auto' for instant scrolling or 'smooth' for a smooth transition. Defaults to 'auto'.
MDN Documentation for Element.scrollIntoView()
// Get a target element by its GUID
const targetElement = ix.api.dom.getHtml("<ELEMENT-GUID>");
// Scroll the target element into view with a smooth transition
ix.api.dom.scrollIntoView(targetElement, "smooth");
Scrolls the specified HTML element into the visible area of the browser window.