Interface

Atk-1.0AtkTableSignalSignatures

interface SignalSignatures {
    "column-deleted": (arg1: number, arg2: number) => void;
    "column-inserted": (arg1: number, arg2: number) => void;
    "column-reordered": () => void;
    "model-changed": () => void;
    "row-deleted": (arg1: number, arg2: number) => void;
    "row-inserted": (arg1: number, arg2: number) => void;
    "row-reordered": () => void;
}

Hierarchy (View Summary)

Index
"column-deleted": (arg1: number, arg2: number) => void

The "column-deleted" signal is emitted by an object which implements the AtkTable interface when a column is deleted.

"column-inserted": (arg1: number, arg2: number) => void

The "column-inserted" signal is emitted by an object which implements the AtkTable interface when a column is inserted.

"column-reordered": () => void

The "column-reordered" signal is emitted by an object which implements the AtkTable interface when the columns are reordered.

"model-changed": () => void

The "model-changed" signal is emitted by an object which implements the AtkTable interface when the model displayed by the table changes.

"row-deleted": (arg1: number, arg2: number) => void

The "row-deleted" signal is emitted by an object which implements the AtkTable interface when a row is deleted.

"row-inserted": (arg1: number, arg2: number) => void

The "row-inserted" signal is emitted by an object which implements the AtkTable interface when a row is inserted.

"row-reordered": () => void

The "row-reordered" signal is emitted by an object which implements the AtkTable interface when the rows are reordered.