Skip to content

Commit 5adecbf

Browse files
authored
[excel] Release save and email as PDF to GA (#813)
* [excel] Release save as PDF to GA * Remove preview tag * Add OfficeScript info to fundamentals article
1 parent 261a079 commit 5adecbf

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

docs/develop/scripting-fundamentals.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Fundamentals for Office Scripts in Excel
33
description: Object model information and other basics to learn before writing Office Scripts.
44
ms.topic: get-started
5-
ms.date: 10/24/2023
5+
ms.date: 12/04/2025
66
ms.localizationpriority: high
77
---
88

@@ -43,7 +43,9 @@ To write a script, you need to understand how the Office Scripts APIs fit togeth
4343
- A **Worksheet** contains collections of those data objects that are present in the individual sheet.
4444
- **Workbooks** contain collections of some of those data objects (such as **Tables**) for the entire **Workbook**.
4545

46-
The complete list of Office Scripts API objects is detailed in the [ExcelScript package](/javascript/api/office-scripts/excelscript).
46+
Office Scripts APIs use two namespaces: `OfficeScript` for APIs that are not connected to an Excel workbook, and `ExcelScript` for APIs that work with Excel workbooks.
47+
48+
The complete list of Office Scripts API objects is detailed in the [ExcelScript](/javascript/api/office-scripts/excelscript) and [OfficeScript](/javascript/api/office-scripts/officescript) packages.
4749

4850
## Workbook
4951

docs/resources/samples/samples-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Office Scripts samples
33
description: Available Office Scripts samples and scenarios.
4-
ms.date: 11/20/2025
4+
ms.date: 12/04/2025
55
ms.localizationpriority: medium
66
---
77

@@ -45,7 +45,7 @@ Be sure to download the sample workbooks included with each sample. That lets yo
4545
| [Notify people with comments](add-excel-comments.md) | This sample adds comments to a cell including @mentioning a colleague. |
4646
| [Output Excel data as JSON](get-table-data.md) | This solution shows how to output Excel table data as JSON to use in Power Automate. |
4747
| [Remove hyperlinks from each cell in an Excel worksheet](remove-hyperlinks-from-cells.md) | This sample clears all of the hyperlinks from the current worksheet. |
48-
| [Save and email as a PDF (preview)](save-as-pdf-email-as-pdf.md) | This sample saves a worksheet as a PDF and emails it to a recipient. |
48+
| [Save and email as a PDF](save-as-pdf-email-as-pdf.md) | This sample saves a worksheet as a PDF and emails it to a recipient. |
4949
| [Set conditional formatting for cross-column comparisons](conditional-formatting-parameters.md) | This sample applies formatting based on values in adjacent columns. It also gets user input through script parameters. |
5050
| [Use external fetch calls](external-fetch-calls.md) | This sample uses `fetch` to get information from GitHub for the script. |
5151

docs/resources/samples/save-as-pdf-email-as-pdf.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
---
22
title: Save and email as a PDF
33
description: Use Office Scripts to save a worksheet as a PDF and then email that PDF.
4-
ms.date: 07/11/2025
4+
ms.date: 12/04/2025
55
ms.localizationpriority: medium
66
---
77

8-
# Save a worksheet and email it as a PDF (preview)
8+
# Save a worksheet and email it as a PDF
99

1010
Use Office Scripts to save a worksheet as a PDF and email it to yourself or your team.
1111

12-
> [!NOTE]
13-
> The script in this sample is provided as a preview for developers and may change based on feedback that we receive. Do not use this script in a production environment.
14-
1512
## Solution
1613

1714
1. Create a new Excel file in your OneDrive.

0 commit comments

Comments
 (0)