Interface DrawGridKeyboardOptions

interface DrawGridKeyboardOptions {
    deleteCellValueOnDel?: boolean;
    moveCellOnEnter?: boolean | DrawGridKeyboardMoveCellFunction;
    moveCellOnTab?: boolean | DrawGridKeyboardMoveCellFunction;
    selectAllOnCtrlA?: boolean;
}

Properties

deleteCellValueOnDel?: boolean
moveCellOnEnter?: boolean | DrawGridKeyboardMoveCellFunction
moveCellOnTab?: boolean | DrawGridKeyboardMoveCellFunction
selectAllOnCtrlA?: boolean