igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
34 lines (33 loc) • 1.32 kB
TypeScript
import { IgxCancelEventArgs } from "igniteui-angular-core";
import { SpreadsheetEditModeExitingEventArgs as SpreadsheetEditModeExitingEventArgs_internal } from "./SpreadsheetEditModeExitingEventArgs";
import { SpreadsheetCell } from "./SpreadsheetCell";
/**
* Event arguments for the
* editModeExiting event.
*/
export declare class IgxSpreadsheetEditModeExitingEventArgs extends IgxCancelEventArgs {
/**
* @hidden
*/
get i(): SpreadsheetEditModeExitingEventArgs_internal;
constructor();
/**
* Returns or sets a boolean indicating whether the changes will be made to the cell's value when edit mode ends.
*/
get acceptChanges(): boolean;
set acceptChanges(v: boolean);
static ngAcceptInputType_acceptChanges: boolean | string;
/**
* Returns a boolean indicating if the edit mode is being forced to exit edit mode in which case it cannot be cancelled.
*/
get canCancel(): boolean;
static ngAcceptInputType_canCancel: boolean | string;
/**
* Returns the cell for which the control is exiting edit mode.
*/
get cell(): SpreadsheetCell;
/**
* Returns the edit text that will be used to update the cell(s).
*/
get editText(): string;
}