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

    Interface IListPaneButtonEntry

    List Pane button entry

    interface IListPaneButtonEntry {
        enabled: boolean;
        index: number;
        slot: IListPaneSlot;
        type: ListPaneEntryType;
        visible: boolean;
        setEnabled(enabled: true): void;
        setIcon(icon: string): void;
        setTitle(title: string): void;
        setTooltip(tooltip: BasicTooltipContent): void;
        setVisible(visible: boolean): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    enabled: boolean

    Enabled state of the entry.

    index: number

    Sequence index of the entry.

    Slot that owns the entry.

    Type of the entry.

    visible: boolean

    Visibility state of the entry.

    Methods

    • Parameters

      • enabled: true

        New enabled state.

      Returns void

      Updates enabled state of the entry.

    • Parameters

      • icon: string

        New icon.

      Returns void

      Updates icon of the entry.

    • Parameters

      • title: string

        New title.

      Returns void

      Updates title of the entry.

    • Parameters

      • visible: boolean

        New value.

      Returns void

      Updates visibility of the entry.