Skip to main content

Home > blockly > utils > style > scrollIntoContainerView

utils.style.scrollIntoContainerView() function

Changes the scroll position of container with the minimum amount so that the content and the borders of the given element become visible. If the element is bigger than the container, its top left corner will be aligned as close to the container's top left corner as possible. Copied from Closure's goog.style.scrollIntoContainerView

Signature:

export declare function scrollIntoContainerView(element: Element, container: Element, opt_center?: boolean): void;

Parameters

ParameterTypeDescription
elementElementThe element to make visible.
containerElementThe container to scroll. If not set, then the document scroll element will be used.
opt_centerboolean(Optional) Whether to center the element in the container. Defaults to false.

Returns:

void