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

    A property item which supports Text properties

    export interface ITextPropertyItem extends IPropertyItemBase {
    readonly value: Readonly<LocalizedString>;
    setAlignment(alignment: LayoutAlignment): void;
    setTitle(title: LocalizedString | undefined): void;
    setTooltip(tooltip: BasicTooltipContent | undefined): void;
    }
    interface ITextPropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        typeName: PropertyItemType;
        value: Readonly<LocalizedString>;
        visible: boolean;
        setAlignment(alignment: LayoutAlignment): void;
        setTitle(title: LocalizedString | undefined): void;
        setTooltip(tooltip: BasicTooltipContent | undefined): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    enable: boolean

    If the item is enabled in the UI.

    id: string

    Unique ID for the property item.

    paneId: string

    The parent pane id.

    The type name of the target property.

    value: Readonly<LocalizedString>

    Current value of the property item.

    visible: boolean

    If the item should be visible in the UI.

    Methods