VerticalExpandingListProperties
export type VerticalExpandingListProperties = {
Enabled: CanBeState<boolean>?,
Padding: CanBeState<UDim>?,
SizeX: CanBeState<number>?,
[any]: any,
}
The VerticalExpandingListProperties
table that is given to the VerticalExpandingList()
function that contains data about the desired VerticalExpandingList
component.
Properties
Enabled : CanBeState<boolean>?
Sets whether the VerticalExpandingList
will be enabled or not. Can either be a State
containing a boolean
, or a boolean
.
Padding : CanBeState<UDim>?
The padding between instances inside the VerticalExpandingList
. Can either be a State
containing an UDim
, or an UDim
.
SizeX : CanBeState<number>?
This property sets the size of the VerticalExpandingList
on the X axis (Scale). Can either be a State
containing an number
, or an number
.