This Office Add-in sample uses Angular. It lets you explore and modify code snippets for ExcelJS and WordJS. You can browse the code snippets at these two locations:
IntelliSense is enabled so that you can see which properties and methods are available on each object. We highly suggest that you run this sample in Excel and Word after you browse the available snippets. The next two sections will show you how you can make this add-in available in Excel and Word.
Do the following steps to run this sample in Excel 2016:
-
Create a folder on a network share called
manifests
. -
Create a file called snippet-explorer-excelJS.xml and place the following content in it:
<?xml version="1.0" encoding="utf-8"?> <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="TaskPaneApp"> <Id>6492a0e5-b158-47da-9145-6804c67ed8d9</Id> <Version>1.0</Version> <ProviderName>Microsoft</ProviderName> <DefaultLocale>EN-US</DefaultLocale> <DisplayName DefaultValue="excel-js-snippet-explorer"/> <Description DefaultValue="Contains snippets for ExcelJS."/> <Hosts> <Host Name="Workbook"/> </Hosts> <DefaultSettings> <SourceLocation DefaultValue="https://officesnippetexplorer.azurewebsites.net/#/add-in/excel"/> </DefaultSettings> <Permissions>ReadWriteDocument</Permissions> </OfficeApp>
-
Replace the guid in the
<id>
element with a guid you generate. Save the file. -
Open Excel 2016 with a new workbook.
-
Select File > Options > Trust Center > Trust Center Settings > Trusted Add-in Catalogs.
-
In the Catalog Url field, add the url to the
manifests
folder you created on the network share. Select the Add catalog button. -
Check the Show in menu button and then select OK.
-
Select Insert > My Add-ins > Shared Folder.
-
Select the add-in named excel-js-snippet-explorer and select Insert. The add-in will load.
-
You can now run the code samples. We suggest that you play with the snippets in the code editor to see what you can do with ExcelJS.
Do the following steps to run this sample in Word 2016:
-
Create a folder on a network share called
manifests
. -
Create a file called snippet-explorer-wordJS.xml and place the following content in it:
<?xml version="1.0" encoding="utf-8"?> <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="TaskPaneApp"> <Id>6492a0e5-b158-47da-9145-6804c67ed8d9</Id> <Version>1.0</Version> <ProviderName>Microsoft</ProviderName> <DefaultLocale>EN-US</DefaultLocale> <DisplayName DefaultValue="word-js-snippet-explorer"/> <Description DefaultValue="Contains snippets for WordJS."/> <Hosts> <Host Name="Document"/> </Hosts> <DefaultSettings> <SourceLocation DefaultValue="https://officesnippetexplorer.azurewebsites.net/#/add-in/word"/> </DefaultSettings> <Permissions>ReadWriteDocument</Permissions> </OfficeApp>
-
Replace the guid in the
<id>
element with a guid you generate. Save the file. -
Open Word 2016 with a new document.
-
Select File > Options > Trust Center > Trust Center Settings > Trusted Add-in Catalogs.
-
In the Catalog Url field, add the url to the
manifests
folder you created on the network share. Select the Add catalog button. -
Check the Show in menu button and then select OK.
-
Select Insert > My Add-ins > Shared Folder.
-
Select the add-in named word-js-snippet-explorer and select Insert. The add-in will load.
-
You can now run the code samples. We suggest that you play with the snippets in the code editor to see what you can do with WordJS.
Do the following steps to run this sample in OneNote:
-
Create a file called snippet-explorer-onenote.xml and place the following content in it:
<?xml version="1.0" encoding="utf-8"?> <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="TaskPaneApp"> <Id>6492a0e5-b158-47da-9145-6804c67ed8d9</Id> <Version>1.0</Version> <ProviderName>Microsoft</ProviderName> <DefaultLocale>EN-US</DefaultLocale> <DisplayName DefaultValue="onenote-js-snippet-explorer"/> <Description DefaultValue="Contains snippets for OneNoteJS."/> <Hosts> <Host Name="Notebook"/> </Hosts> <DefaultSettings> <SourceLocation DefaultValue="https://officesnippetexplorer.azurewebsites.net/#/add-in/onenote"/> </DefaultSettings> <Permissions>ReadWriteDocument</Permissions> </OfficeApp>
-
Replace the guid in the
<id>
element with a guid you generate. Save the file. -
Browse to onedrive.com and create a new notebook (or open an existing one)
-
Select Insert > Upload Add-ins.
-
Select the add-in named snippet-explorer-onenote.xml from step (1). The add-in will load.
-
You can now run the code samples. We suggest that you play with the snippets in the code editor to see what you can do with OneNoteJS.
You will need to sign a Contributor License Agreement before submitting your pull request. To complete the Contributor License Agreement (CLA), you will need to submit a request via the form and then electronically sign the Contributor License Agreement when you receive the email containing the link to the document.
This sample is open for pull requests to add snippets to this repository. You can add to the snippets in either the excel-snippets or word-snippets directories. Here's what you do to add a snippet:
-
Create a fork of this repository.
-
Create a JS file in the excel-snippets or word-snippets directory with a descriptive name. Take a look at the existing file names for ideas on how you should name the file.
-
Add your snippet to the file.
-
Open samples.json.
-
Add an entry to the
values
array. Your entry will look like:{ "done": true, "filename": "YOURFILENAME", "name": "DISPLAYNAME", "group": "GROUPNAMEFROMGROUPS", "description": "ASIMPLEDESCRIPTION"}
-
Replace the value for the filename, name, group, and description fields with information that describes your snippet. The filename should take the form of {object}{method}{description}.js. The object name is required -- this makes the list of snippets easy to peruse. For example: paragraphClear.js or rangeInsertText.js.
-
Save all of your changes, test it, push it, and open your pull request.
Learn more about these APIs by reading the documentation.
Visit http://dev.office.com for all your Office 365 Development needs
- Get started with Office 365 development at http://dev.office.com/getting-started
- Browse our full collection of Code Samples at http://dev.office.com/code-samples
- Watch on-demand video training at http://dev.office.com/training
- Subscribe to the weekly podcast at http://dev.office.com/podcasts
- Try our APIs at https://apisandbox.msdn.microsoft.com/
- Follow us on @officeDev and Facebook
- Give us your feedback
- Submit Issues directly against this repo
- Submit feedback on UserVoice