RowsMovedArgs: {
    destination: number;
    index: number;
    region: RowRegion;
    span: number;
    type: "rows-moved";
}

An arguments object for the changed signal.

Notes

Data models should emit the changed signal with this args object type when rows are moved.

Type declaration

  • Readonly destination: number

    The ending index of the first modified row.

  • Readonly index: number

    The starting index of the first modified row.

  • Readonly region: RowRegion

    The region which contains the modified rows.

  • Readonly span: number

    The number of modified rows.

  • Readonly type: "rows-moved"

    The discriminated type of the args object.