@univerjs/sheets-hyper-link v0.5.0-beta.1 • Docs
Class: FWorkbookHyperLinkMixin
FBase
is a base class for all facade classes.
It provides a way to extend classes with static and instance methods.
The _initialize
as a special method that will be called after the constructor. You should never call it directly.
Extends
Implements
IFWorkbookHyperlinkMixin
Constructors
new FWorkbookHyperLinkMixin()
new FWorkbookHyperLinkMixin(
_workbook,
_injector,
_resourceLoaderService,
_selectionManagerService,
_univerInstanceService,
_commandService,
_permissionService,
_logService): FWorkbookHyperLinkMixin
Parameters
Parameter | Type |
---|---|
_workbook | Workbook |
_injector | Injector |
_resourceLoaderService | IResourceLoaderService |
_selectionManagerService | SheetsSelectionsService |
_univerInstanceService | IUniverInstanceService |
_commandService | ICommandService |
_permissionService | IPermissionService |
_logService | ILogService |
Returns
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:27
Properties
Property | Modifier | Type | Inherited from | Defined in |
---|---|---|---|---|
_commandService | readonly | ICommandService | FWorkbook ._commandService | sheets/src/facade/f-workbook.ts:33 |
_injector | readonly | Injector | FWorkbook ._injector | sheets/src/facade/f-workbook.ts:29 |
_logService | readonly | ILogService | FWorkbook ._logService | sheets/src/facade/f-workbook.ts:35 |
_permissionService | readonly | IPermissionService | FWorkbook ._permissionService | sheets/src/facade/f-workbook.ts:34 |
_resourceLoaderService | readonly | IResourceLoaderService | FWorkbook ._resourceLoaderService | sheets/src/facade/f-workbook.ts:30 |
_selectionManagerService | readonly | SheetsSelectionsService | FWorkbook ._selectionManagerService | sheets/src/facade/f-workbook.ts:31 |
_univerInstanceService | readonly | IUniverInstanceService | FWorkbook ._univerInstanceService | sheets/src/facade/f-workbook.ts:32 |
_workbook | readonly | Workbook | FWorkbook ._workbook | sheets/src/facade/f-workbook.ts:28 |
id | readonly | string | FWorkbook .id | sheets/src/facade/f-workbook.ts:25 |
Methods
_initialize()
_initialize(): void
Returns
void
Inherited from
Defined in
core/src/facade/f-base.ts:33
create()
create(
name,
rows,
column): FWorksheet
Create a new worksheet and returns a handle to it.
Parameters
Parameter | Type | Description |
---|---|---|
name | string | Name of the new sheet |
rows | number | How may rows would the new sheet have |
column | number | How many columns would the new sheet have |
Returns
The new created sheet
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:94
createSheetHyperlink()
createSheetHyperlink(sheetId, range?): string
create a hyperlink for the sheet
Parameters
Parameter | Type | Description |
---|---|---|
sheetId | string | the sheet id to link |
range ? | string | IRange | the range to link, or define-name id |
Returns
string
the hyperlink string
Implementation of
IFWorkbookHyperlinkMixin.createSheetHyperlink
Overrides
FWorkbook.createSheetHyperlink
Defined in
sheets-hyper-link/src/facade/f-workbook.ts:40
deleteSheet()
deleteSheet(sheet): void
Deletes the specified worksheet.
Parameters
Parameter | Type | Description |
---|---|---|
sheet | FWorksheet | The worksheet to delete. |
Returns
void
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:189
getActiveRange()
getActiveRange(): null | FRange
Returns the selected range in the active sheet, or null if there is no active range.
Returns
null
| FRange
the active range
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:303
getActiveSheet()
getActiveSheet(): FWorksheet
Get the active sheet of the workbook.
Returns
The active sheet of the workbook
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:72
getId()
getId(): string
Returns
string
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:42
getName()
getName(): string
Returns
string
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:46
getSheetByName()
getSheetByName(name): null | FWorksheet
Get a worksheet by sheet name.
Parameters
Parameter | Type | Description |
---|---|---|
name | string | The name of the sheet to get. |
Returns
null
| FWorksheet
The worksheet with given sheet name
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:139
getSheetBySheetId()
getSheetBySheetId(sheetId): null | FWorksheet
Get a worksheet by sheet id.
Parameters
Parameter | Type | Description |
---|---|---|
sheetId | string | The id of the sheet to get. |
Returns
null
| FWorksheet
The worksheet with given sheet id
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:125
getSheets()
getSheets(): FWorksheet[]
Gets all the worksheets in this workbook
Returns
An array of all the worksheets in the workbook
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:81
getSnapshot()
getSnapshot(): IWorkbookData
Returns
{IWorkbookData}
Deprecated
use ‘save’ instead.
Memberof
FWorkbook
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:63
insertSheet()
insertSheet(): FWorksheet
Inserts a new worksheet into the workbook. Using a default sheet name. The new sheet becomes the active sheet
Returns
The new sheet
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:167
onBeforeCommandExecute()
onBeforeCommandExecute(callback): IDisposable
Register a callback that will be triggered before invoking a command targeting the Univer sheet.
Parameters
Parameter | Type | Description |
---|---|---|
callback | CommandListener | the callback. |
Returns
A function to dispose the listening.
Inherited from
FWorkbook
.onBeforeCommandExecute
Defined in
sheets/src/facade/f-workbook.ts:215
onCommandExecuted()
onCommandExecuted(callback): IDisposable
Register a callback that will be triggered when a command is invoked targeting the Univer sheet.
Parameters
Parameter | Type | Description |
---|---|---|
callback | CommandListener | the callback. |
Returns
A function to dispose the listening.
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:230
onSelectionChange()
onSelectionChange(callback): IDisposable
Parameters
Parameter | Type |
---|---|
callback | (selections ) => void |
Returns
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:240
parseSheetHyperlink()
parseSheetHyperlink(hyperlink): ISheetHyperLinkInfo
parse the hyperlink string to get the hyperlink info
Parameters
Parameter | Type | Description |
---|---|---|
hyperlink | string | the hyperlink string |
Returns
the hyperlink info
Implementation of
IFWorkbookHyperlinkMixin.parseSheetHyperlink
Overrides
FWorkbook.parseSheetHyperlink
Defined in
sheets-hyper-link/src/facade/f-workbook.ts:50
redo()
redo(): Promise<boolean>
Returns
Promise
<boolean
>
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:205
save()
save(): IWorkbookData
save workbook snapshot data, including conditional formatting, data validation, and other plugin data.
Returns
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:53
setActiveRange()
setActiveRange(range): void
Sets the active selection region for this sheet.
Parameters
Parameter | Type | Description |
---|---|---|
range | FRange | The range to set as the active selection. |
Returns
void
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:274
setActiveSheet()
setActiveSheet(sheet): FWorksheet
Sets the given worksheet to be the active worksheet in the workbook.
Parameters
Parameter | Type | Description |
---|---|---|
sheet | FWorksheet | The worksheet to set as the active worksheet. |
Returns
The active worksheet
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:153
setEditable()
setEditable(value): void
Used to modify the editing permissions of the workbook. When the value is false, editing is not allowed.
Parameters
Parameter | Type | Description |
---|---|---|
value | boolean | editable value want to set |
Returns
void
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:261
undo()
undo(): Promise<boolean>
Returns
Promise
<boolean
>
Inherited from
Defined in
sheets/src/facade/f-workbook.ts:200
extend()
static extend(source): void
Parameters
Parameter | Type |
---|---|
source | any |
Returns
void
Inherited from
Defined in
core/src/facade/f-base.ts:35