Scroller
For making Content scrollable. Equivalent to Roblox's Scroller
instance.
Types
ScrollerProps
interface
ScrollerProps {
AutomaticCanvasSize:
Enum.AutomaticSize?
--
Determines whether the canvas size is automatically adjusted.
BottomImage:
string?
--
The image used for the bottom scroll bar.
ElasticBehavior:
Enum.ElasticBehavior?
--
Determines the elastic behavior of the scrolling frame.
HorizontalScrollBarInset:
Enum.ScrollBarInset?
--
Determines the inset behavior of the horizontal scroll bar.
MidImage:
string?
--
The image used for the middle scroll bar.
ScrollBarImageTransparency:
number?
--
The transparency of the scroll bar image.
ScrollBarThickness:
number?
--
The thickness of the scroll bar.
ScrollingDirection:
Enum.ScrollingDirection?
--
The direction in which scrolling is allowed.
ScrollingEnabled:
boolean?
--
Determines whether scrolling is enabled.
TopImage:
string?
--
The image used for the top scroll bar.
VerticalScrollBarInset:
Enum.ScrollBarInset?
--
Determines the inset behavior of the vertical scroll bar.
VerticalScrollBarPosition:
Enum.VerticalScrollBarPosition?
--
Determines the position of the vertical scroll bar.
}