VerticalScrollArrangement
Definition
A formatting element in which to place components that should be displayed one below another. (The first child component is stored on top, the second beneath it, etc.) If you wish to have components displayed next to one another, use HorizontalScrollArrangement
instead.
This version is scrollable.
Properties
- AlignHorizontal
- A number that encodes how contents of the
VerticalScrollArrangement
are aligned horizontally. The choices are:1
= left aligned,2
= right aligned,3
= horizontally centered. Alignment has no effect if theVerticalScrollArrangement
’sWidth
isAutomatic
. - AlignVertical
- A number that encodes how the contents of the
VerticalScrollArrangement
are aligned vertically. The choices are:1
= aligned at the top,2
= vertically centered,3
= aligned at the bottom. Alignment has no effect if theVerticalScrollArrangement
’sHeight
isAutomatic
. - BackgroundColor
- Specifies the background color of the VerticalScrollArrangement as an alpha-red-green-blue integer. If an Image has been set, the color change will not be visible until the Image is removed.
- Height
- Specifies the
VerticalScrollArrangement
’s vertical height, measured in pixels. - HeightPercent
- Specifies the
VerticalScrollArrangement
’s vertical height as a percentage of theScreen
’sHeight
. - Image
- Specifies the path of the background image of the
VerticalScrollArrangement
. - Visible
- Specifies whether the
VerticalScrollArrangement
should be visible on the screen. Value istrue
if theVerticalScrollArrangement
is showing andfalse
if hidden. - Width
- Specifies the horizontal width of the
VerticalScrollArrangement
, measured in pixels. - WidthPercent
- Specifies the horizontal width of the
VerticalScrollArrangement
as a percentage of theScreen
’sWidth
.