Skip to content

VerticalCollapsibleSectionProperties

export type VerticalCollapsibleSectionProperties = VerticalExpandingListProperties & {
    Text: CanBeState<string>?,
    TextColor3: CanBeState<Color3>?,
    Collapsed: CanBeValue<boolean>?,
    [any]: any,
}

The VerticalCollapsibleSectionProperties table that is given to the VerticalCollapsibleSection() function that contains data about the desired VerticalCollapsibleSection component.

This type is also an extension of the VerticalExpandingListProperties type.


Properties

Text : CanBeState<string>?

The text that will be displayed on the VerticalCollapsibleSection. Can either be a State containing a string, or a string.


TextColor3 : CanBeState<Color3>?

The color of the text on the VerticalCollapsibleSection. Can either be a State containing a Color3, or a Color3. Setting this property is not recommended, as it will overwrite the default color defined by the theme of the Studio.


Collapsed : CanBeValue<boolean>?

Sets whether or not the VerticalCollapsibleSection is collapsed. Can either be a Value containing a number, or a number.


This component name sure is long...