@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
14 lines (13 loc) • 495 B
TypeScript
/**
* Specifies values which specify when to display scroll bars at the control.
*/
export declare enum ScrollBarsStyle {
/**
* Scroll bars are always displayed regardless of the control content dimensions. If control content is too small, scroll bars are disabled.
*/
always = 0,
/**
* Scroll bars are displayed when control content is too large to fit the control client area. When content is too small, scroll bars are hidden.
*/
auto = 1
}