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

    Interface TextFieldOptionsBeta

    Options for configuring a text field component.

    interface TextFieldOptions {
        description?:
            | string
            | ObservableString
            | ObservableUIRawMessage
            | UIRawMessage;
        disabled?: boolean
        | ObservableBoolean;
        visible?: boolean | ObservableBoolean;
    }
    Index

    Properties

    Descriptive text shown around the text field label to provide additional context.

    disabled?: boolean | ObservableBoolean

    When true or bound to a true ObservableBoolean, the text field is shown but cannot be edited.

    visible?: boolean | ObservableBoolean

    When false or bound to a false ObservableBoolean, the text field is hidden.