Type alias ColumnResizeData

ColumnResizeData: {
    clientX: number;
    index: number;
    override: IDisposable;
    region: ColumnRegion;
    size: number;
    type: "column-resize";
}

A type alias for the column resize data.

Type declaration

  • Readonly clientX: number

    The original client X position of the mouse.

  • Readonly index: number

    The index of the section being resized.

  • Readonly override: IDisposable

    The disposable to clear the cursor override.

  • Readonly region: ColumnRegion

    The column region which holds the section being resized.

  • Readonly size: number

    The original size of the section.

  • Readonly type: "column-resize"

    The descriminated type for the data.