igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
27 lines (26 loc) • 671 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* Enumeration used to identify the cell to which the [[Spreadsheet]] should navigate when the enter key (or shift + enter) are pressed.
*/
export declare enum SpreadsheetEnterKeyNavigationDirection {
/**
* The cell below should be activated.
*/
Down = 0,
/**
* The cell to the right should be activated
*/
Right = 1,
/**
* The cell above should be activated.
*/
Up = 2,
/**
* The cell to the left should be activated
*/
Left = 3
}
/**
* @hidden
*/
export declare let SpreadsheetEnterKeyNavigationDirection_$type: Type;