Interface MultiSelectionEvents

interface MultiSelectionEvents {
    addRange: ((e) => void);
    changeCursor: (() => void);
    changeSelection: (() => void);
    multiSelect: (() => void);
    removeRange: ((e) => void);
    singleSelect: (() => void);
}

Hierarchy (view full)

Properties

addRange: ((e) => void)

Type declaration

    • (e): void
    • Parameters

      Returns void

changeCursor: (() => void)

Emitted when the cursor position changes.

Type declaration

    • (): void
    • Emitted when the cursor position changes.

      Returns void

changeSelection: (() => void)

Emitted when the cursor selection changes.

Type declaration

    • (): void
    • Emitted when the cursor selection changes.

      Returns void

multiSelect: (() => void)

Type declaration

    • (): void
    • Returns void

removeRange: ((e) => void)

Type declaration

    • (e): void
    • Parameters

      Returns void

singleSelect: (() => void)

Type declaration

    • (): void
    • Returns void

Generated using TypeDoc