Localization string id and border enable boolean for multiline text component.

interface IPropertyItemOptionsText {
    border: boolean;
    enable?: boolean;
    onChange?: OnChangeCallback<PropertyBag, string>;
    titleAltText?: string;
    titleStringId?: string;
    valueStringId: string;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

border: boolean
enable?: boolean

If the item is enabled in the UI.

onChange?: OnChangeCallback<PropertyBag, string>

Callback to execute when the value is updated.

titleAltText?: string

Fallback display text if no loc ID

titleStringId?: string

Loc ID (resolved on client)

valueStringId: string
visible?: boolean

If the item should be visible in the UI.