You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Get the whole document from an add-in for PowerPoint or Word
3
3
description: Learn to get the whole document from a PowerPoint or Word add-in.
4
-
ms.date: 01/07/2025
4
+
ms.date: 02/12/2025
5
5
ms.topic: how-to
6
6
ms.localizationpriority: medium
7
7
---
@@ -22,7 +22,7 @@ This article assumes that you are using a text editor to create the task pane ad
22
22
23
23
- A CSS file (**Program.css**) to contain the styles and formatting for the add-in.
24
24
25
-
-An add-in only manifest file (**GetDoc_App.xml**) for the add-in, available on a shared network folder or add-in catalog. The manifest file must point to the location of the HTML file mentioned previously.
25
+
-A manifest file (**GetDoc_App.xml** or **GetDoc_App.json**) for the add-in, available on a shared network folder or add-in catalog. The manifest file must point to the location of the HTML file mentioned previously.
26
26
27
27
Alternatively, you can create an add-in for your Office application using one of the following options. You won't have to create new files as the equivalent of each required file will be available for you to update. For example, the Yeoman generator options include **./src/taskpane/taskpane.html**, **./src/taskpane/taskpane.js**, **./src/taskpane/taskpane.css**, and **./manifest.xml**.
28
28
@@ -41,33 +41,114 @@ Before you begin creating this add-in for PowerPoint or Word, you should be fami
41
41
42
42
The manifest file for an Office Add-in provides important information about the add-in: what applications can host it, the location of the HTML file, the add-in title and description, and many other characteristics.
43
43
44
-
1. In a text editor, add the following code to the manifest file.
0 commit comments