SelectArgs: {
    c1: number;
    c2: number;
    clear: ClearMode;
    cursorColumn: number;
    cursorRow: number;
    r1: number;
    r2: number;
}

A type alias for the select args.

Type declaration

  • c1: number

    The first column of the selection.

    This may be greater than c2.

  • c2: number

    The last column of the selection.

    This may be less than c1.

  • clear: ClearMode

    Which of the existing selections to clear.

  • cursorColumn: number

    The column index for the cursor.

    This should be contained within the selection.

  • cursorRow: number

    The row index for the cursor.

    This should be contained within the selection.

  • r1: number

    The first row of the selection.

    This may be greater than r2.

  • r2: number

    The last row of the selection.

    This may be less than r1.