VerticalExpandingListProperties
export type VerticalExpandingListProperties = {
Enabled: CanBeState<boolean>?,
Padding: CanBeState<UDim>?,
[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
.