diff --git a/packages/facade/src/apis/sheets/f-worksheet.ts b/packages/facade/src/apis/sheets/f-worksheet.ts index dfa0d48143..8ed95d34a2 100644 --- a/packages/facade/src/apis/sheets/f-worksheet.ts +++ b/packages/facade/src/apis/sheets/f-worksheet.ts @@ -39,6 +39,14 @@ export class FWorksheet { return this._worksheet.getSheetId(); } + /** + * Returns the name of the worksheet. + * @returns name of the worksheet + */ + getName(): string { + return this._worksheet.getName(); + } + getSelection(): FSelection | null { const selections = this._selectionManagerService.getSelections(); if (!selections) {