igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
58 lines (57 loc) • 2.24 kB
TypeScript
import { SpreadsheetUserPromptDisplayingEventArgs as SpreadsheetUserPromptDisplayingEventArgs_internal } from "./SpreadsheetUserPromptDisplayingEventArgs";
import { SpreadsheetUserPromptTrigger } from "./SpreadsheetUserPromptTrigger";
/**
* Event arguments for the
* userPromptDisplaying event.
*/
export declare class IgxSpreadsheetUserPromptDisplayingEventArgs {
protected _implementation: any;
/**
* @hidden
*/
get i(): SpreadsheetUserPromptDisplayingEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Returns a boolean indicating if the operation that triggered the prompt can be cancelled.
*/
get canCancel(): boolean;
static ngAcceptInputType_canCancel: boolean | string;
/**
* Returns or sets a boolean indicating whether the operation that triggered the prompt should be cancelled.
* This property is only used if the
* canCancel is true, which indicates that the
* operation supports being cancelled, and if
* displayMessage is set to false. Otherwise if the
* message is shown and the operation may be cancelled then whether the operation is cancelled will be based
* upon the users response to the prompt.
*/
get cancel(): boolean;
set cancel(v: boolean);
static ngAcceptInputType_cancel: boolean | string;
/**
* Returns or sets the caption for the message dialog that will be displayed.
*/
get caption(): string;
set caption(v: string);
/**
* Returns or sets a boolean indicating if a message will be displayed to the end user.
*/
get displayMessage(): boolean;
set displayMessage(v: boolean);
static ngAcceptInputType_displayMessage: boolean | string;
/**
* Returns the exception for the error, if there was one.
*/
get exception(): any;
/**
* Returns or sets the message that will be displayed.
*/
get message(): string;
set message(v: string);
/**
* Returns an enumeration indicating the action caused the prompt to be displayed.
*/
get trigger(): SpreadsheetUserPromptTrigger;
}