VerticalScrollArrangement Component


Properties

alignHorizontal
  A string that encodes how contents of the VerticalScrollArrangement are aligned horizontally. The choices are: 'left', 'right', 'center'. Alignment has no effect if the VerticalScrollArrangement’s Width is Automatic.
Data type: string
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" alignHorizontal="center">
Code Writeable true verticalscrollarrangementName.alignHorizontal = "center"
Code Readable true let variable = verticalscrollarrangementName.alignHorizontal

alignVertical
  A string that encodes how the contents of the VerticalScrollArrangement are aligned vertically. The choices are: 'top', 'center', 'bottom'. Alignment has no effect if the VerticalScrollArrangement’s Height is Automatic.
Data type: string
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" alignVertical="center">
Code Writeable true verticalscrollarrangementName.alignVertical = "center"
Code Readable true let variable = verticalscrollarrangementName.alignVertical

backgroundColor
  Specifies the background color of the VerticalScrollArrangement as an red-green-blue-alpha RRGGBBAA or red-green-blue RRGGBB string. If an Image has been set, the color change will not be visible until the Image is removed.
Data type: color
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" backgroundColor="FFe97220">
Code Writeable true verticalscrollarrangementName.backgroundColor = "FFe97220"
Code Readable true let variable = verticalscrollarrangementName.backgroundColor

height
  Specifies the VerticalScrollArrangement's vertical height, measured in pixels.
Data type: number
Designer Writable false
Code Writeable true verticalscrollarrangementName.height = 400
Code Readable true let variable = verticalscrollarrangementName.height

heightPercent
  Specifies the VerticalScrollArrangement's vertical height as a percentage of the Screen's Height.
Data type: number
Designer Writable false
Code Writeable true verticalscrollarrangementName.heightPercent = 80
Code Readable false

image
  Specifies the path of the background image of the VerticalScrollArrangement.
Data type: string
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" image="cat.png">
Code Writeable true verticalscrollarrangementName.image = "cat.png"
Code Readable true let variable = verticalscrollarrangementName.image

visible
  Specifies whether the VerticalScrollArrangement should be visible on the screen. Value is true{
Data type: boolean
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" visible="true">
Code Writeable true verticalscrollarrangementName.visible = true
Code Readable true let variable = verticalscrollarrangementName.visible

width
  Specifies the horizontal width of the VerticalScrollArrangement, measured in pixels.
Data type: number
Designer Writable false
Code Writeable true verticalscrollarrangementName.width = 400
Code Readable true let variable = verticalscrollarrangementName.width

widthPercent
  Specifies the horizontal width of the VerticalScrollArrangement as a percentage of the Screen's Width.
Data type: number
Designer Writable false
Code Writeable true verticalscrollarrangementName.widthPercent = 75
Code Readable false

class
  The styling class of the the component
Data type: string
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" class="Test class">
Code Writeable false
Code Readable false

id
  The styling id of the the component
Data type: string
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" id="Test id">
Code Writeable false
Code Readable false

name
  The name of the component that will be used to refer to it in code.
Data type: string
Designer Writable true <verticalscrollarrangement name="verticalscrollarrangementName" name="testComponent">
Code Writeable false
Code Readable false