UNPKG

@syncfusion/ej2-spreadsheet

Version:

Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel

36 lines (35 loc) 957 B
import { Workbook } from '../base/index'; import { HyperlinkModel } from '../common/class-model'; /** * The `WorkbookHyperlink` module is used to handle Hyperlink action in Spreadsheet. */ export declare class WorkbookHyperlink { private parent; /** * Constructor for WorkbookSort module. * * @param {Workbook} parent - Specifies the workbook. */ constructor(parent: Workbook); /** * To destroy the sort module. * * @returns {void} - To destroy the sort module. */ protected destroy(): void; private addEventListener; private removeEventListener; setLinkHandler(args: { hyperlink: string | HyperlinkModel; cell: string; displayText: string; triggerEvt?: boolean; isUndoRedo?: boolean; }): void; /** * Gets the module name. * *@returns {string} - returns the module name. */ protected getModuleName(): string; }