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

    Interface IListPanePropertyItem

    A property item which supports Sub Pane properties

    interface IListPanePropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        slotCount: number;
        typeName: PropertyItemType;
        viewSortType: ListPaneViewSortType;
        visible: boolean;
        addSlot(params: ListPaneSlotCreationProps): IListPaneSlot;
        getSlotById(id: string): IListPaneSlot;
        getSlotByIndex(index: number): IListPaneSlot;
        getViewFilter(): ListPaneViewFilter;
        hide(): void;
        removeSlot(id: string): void;
        selectSlot(id: string, deselectOtherSlots?: boolean): void;
        setViewFilter(filter: ListPaneViewFilter): void;
        setViewSortType(sortType: ListPaneViewSortType): void;
        show(): void;
        updateSlots(newSlots: ListPaneSlotCreationProps[]): 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.

    slotCount: number

    Count of the slots managed by the list.

    The type name of the target property.

    viewSortType: ListPaneViewSortType

    Current sorting type for the pane slots

    visible: boolean

    If the item should be visible in the UI.

    Methods

    • Parameters

      • id: string

        Unique identifier of the slot.

      Returns IListPaneSlot

      Finds the slot with the identifier.

    • Parameters

      • index: number

        Index of the slot in the component list.

      Returns IListPaneSlot

      Finds the slot with the index.

    • Returns void

      Hide the pane.

    • Parameters

      • id: string

        Unique identifier of the slot.

      Returns void

      Removes the slot from the list.

    • Parameters

      • id: string

        Unique identifier of the slot.

      • OptionaldeselectOtherSlots: boolean

        Deselects already selected slots if defined.

      Returns void

      Selects slot by id.

    • Parameters

      Returns void

      Filters displaying slots to match the define properties

    • Parameters

      Returns void

      Updates how slots will be sorted in the view

    • Returns void

      Show the pane and all of its items.