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

    Interface IDataTablePropertyItem

    A property item which supports data entries displayed in a table

    export interface IDataTablePropertyItem extends IPropertyItemBase {
    updateEntries(data: IDataTablePropertyItemEntry[][]): void;
    updateEntry(data: IDataTablePropertyItemEntry, row: number, column: number): void;
    updateRow(data: IDataTablePropertyItemEntry[], row: number): void;
    }
    interface IDataTablePropertyItem {
        enable: boolean;
        id: string;
        paneId: string;
        typeName: PropertyItemType;
        visible: boolean;
        updateEntries(data: IDataTablePropertyItemEntry[][]): void;
        updateEntry(
            data: IDataTablePropertyItemEntry,
            row: number,
            column: number,
        ): void;
        updateRow(data: IDataTablePropertyItemEntry[], row: number): 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.

    visible: boolean

    If the item should be visible in the UI.

    Methods