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
Copy file name to clipboardExpand all lines: docs/testing/sideload-add-in-with-unified-manifest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Use the process described in [Sideload with a system prompt, bash shell, or term
28
28
-**PowerPoint Desktop (Edge Chromium)**
29
29
-**Word Desktop (Edge Chromium)**
30
30
31
-
1. Press F5. The project builds and a Node dev-server window opens. This process may take a couple of minutes and then the desktop version of the Office application that you selected opens. You can now work with your add-in. For an Outlook add-in, be sure you're working in the **Inbox** of *your Microsoft 365 account identity*.
31
+
1. Press <kbd>F5</kbd>. The project builds and a Node dev-server window opens. This process may take a couple of minutes and then the desktop version of the Office application that you selected opens. You can now work with your add-in. For an Outlook add-in, be sure you're working in the **Inbox** of *your Microsoft 365 account identity*.
32
32
1. To stop debugging and uninstall the add-in, select **Run** | **Stop Debugging** in Visual Studio Code. Closing the server window doesn't reliably stop the server and closing the Office application doesn't reliably cause Office to unacquire the add-in.
Copy file name to clipboardExpand all lines: docs/tutorials/word-tutorial.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ In this tutorial, you'll create a Word task pane add-in that:
37
37
-**What do you want to name your add-in?**`My Office Add-in`
38
38
-**Which Office client application would you like to support?**`Word`
39
39
40
-

40
+
:::image type="content" source="../images/yo-office-word.png" alt-text="The previous prompts and answers given to the Yeoman generator in a command line interface.":::
41
41
42
42
After you complete the wizard, the generator creates the project and installs supporting Node components.
43
43
@@ -145,15 +145,15 @@ In this step of the tutorial, you'll programmatically test that your add-in supp
145
145
146
146
1. In Word, if the "My Office Add-in" task pane isn't already open, choose the **Home** tab, and then choose the **Show Taskpane** button on the ribbon to open the add-in task pane.
147
147
148
-

148
+
:::image type="content" source="../images/word-quickstart-addin-2b.png" alt-text="The Show Taskpane button highlighted in Word.":::
149
149
150
150
1. In the task pane, choose the **Insert Paragraph** button.
151
151
152
152
1. Make a change in the paragraph.
153
153
154
154
1. Choose the **Insert Paragraph** button again. Note that the new paragraph appears above the previous one because the `insertParagraph` method is inserting at the start of the document's body.
155
155
156
-

156
+
:::image type="content" source="../images/word-tutorial-insert-paragraph-2.png" alt-text="The Insert Paragraph button in the add-in.":::
157
157
158
158
1. [!include[Instructions to stop web server and uninstall dev add-in](../includes/stop-uninstall-dev-add-in.md)]
159
159
@@ -299,7 +299,7 @@ In this step of the tutorial, you'll apply a built-in style to text, apply a cus
299
299
300
300
1. Choose the **Change Font** button. The font of the second paragraph changes to 18 pt., bold, Courier New.
301
301
302
-

302
+
:::image type="content" source="../images/word-tutorial-apply-styles-and-font-2.png" alt-text="The results of applying the styles and fonts defined for the add-in buttons Apply Style, Apply Custom Style, and Change font.":::
303
303
304
304
## Replace text and insert text
305
305
@@ -539,7 +539,7 @@ async function insertTextIntoRange() {
539
539
540
540
1. Choose the **Change Quantity Term** button. Note that "many" replaces the selected text.
541
541
542
-

542
+
:::image type="content" source="../images/word-tutorial-text-replace-2.png" alt-text="The results of choosing the add-in buttons Insert Abbreviation, Add Version Info, and Change Quantity Term.":::
543
543
544
544
## Insert images, HTML, and tables
545
545
@@ -718,7 +718,7 @@ Complete the following steps to define the image that you'll insert into the doc
718
718
719
719
1. Choose the **Insert Table** button and note that a table is inserted after the second paragraph.
720
720
721
-

721
+
:::image type="content" source="../images/word-tutorial-insert-image-html-table-2.png" alt-text="The results of choosing the add-in buttons Insert Image, Insert HTML, and Insert Table.":::
722
722
723
723
## Create and update content controls
724
724
@@ -835,6 +835,7 @@ In this step of the tutorial, you'll learn how to create Rich Text content contr
835
835
1. Choose the **Rename Service** button and note that the text of the content control changes to "Fabrikam Online Productivity Suite".
836
836
837
837

838
+
:::image type="content" source="../images/word-tutorial-content-control-2.png" alt-text="The results of choosing the add-in buttons Create Content Control and Rename Service.":::
0 commit comments