UNPKG

igniteui-angular-spreadsheet

Version:

Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.

32 lines (31 loc) 803 B
import { IgxCancelEventArgs } from "igniteui-angular-core"; /** * Event arguments for the * hyperlinkExecuting event. */ export class IgxSpreadsheetHyperlinkExecutingEventArgs extends IgxCancelEventArgs { /** * @hidden */ get i() { return this._implementation; } constructor() { super(); } /** * Returns the hyperlink to be executed. */ get hyperlink() { return this.i.hyperlink; } /** * Returns or sets the working directory to use when the hyperlink is a file reference. */ get workingDirectory() { return this.i.workingDirectory; } set workingDirectory(v) { this.i.workingDirectory = v; } }