Script API - v1.26.30.28
    Preparing search index...

    Interface DropdownItemDataBeta

    Represents a single item in a dropdown component.

    interface DropdownItemData {
        description?:
            | string
            | ObservableString
            | ObservableUIRawMessage
            | UIRawMessage;
        label: string
        | ObservableString
        | ObservableUIRawMessage
        | UIRawMessage;
        value: number;
    }
    Index

    Properties

    Optional descriptive text shown around the dropdown when this item is selected.

    The text displayed for this item in the dropdown list.

    value: number

    The numeric value associated with this dropdown item. This is the value the bound ObservableNumber will be set to when the player selects this item.