HorizontalScrollArrangement
Definition
A formatting element in which to place components that should be displayed from left to right. If you wish to have components displayed one over another, use VerticalScrollArrangement
instead.
This version is scrollable.
Properties
- AlignHorizontal
- A number that encodes how contents of the
HorizontalScrollArrangement
are aligned horizontally. The choices are:1
= left aligned,2
= right aligned,3
= horizontally centered. Alignment has no effect if theHorizontalScrollArrangement
’sWidth
isAutomatic
. - AlignVertical
- A number that encodes how the contents of the
HorizontalScrollArrangement
are aligned vertically. The choices are:1
= aligned at the top,2
= vertically centered,3
= aligned at the bottom. Alignment has no effect if theHorizontalScrollArrangement
’sHeight
isAutomatic
. - BackgroundColor
- Specifies the background color of the HorizontalScrollArrangement 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
HorizontalScrollArrangement
’s vertical height, measured in pixels. - HeightPercent
- Specifies the
HorizontalScrollArrangement
’s vertical height as a percentage of theScreen
’sHeight
. - Image
- Specifies the path of the background image of the
HorizontalScrollArrangement
. - Visible
- Specifies whether the
HorizontalScrollArrangement
should be visible on the screen. Value istrue
if theHorizontalScrollArrangement
is showing andfalse
if hidden. - Width
- Specifies the horizontal width of the
HorizontalScrollArrangement
, measured in pixels. - WidthPercent
- Specifies the horizontal width of the
HorizontalScrollArrangement
as a percentage of theScreen
’sWidth
.