Skip to content

Instantly share code, notes, and snippets.

@rvanlaak
Created December 19, 2018 14:36
Show Gist options
  • Save rvanlaak/462ab40f5d43a1e195f6945af784081a to your computer and use it in GitHub Desktop.
Save rvanlaak/462ab40f5d43a1e195f6945af784081a to your computer and use it in GitHub Desktop.
Add - Goto - Remove Bindings
name: Blank snippet - 1
description: ''
author: rvanlaak
host: WORD
api_set: {}
script:
content: |
$("#add").click(() => tryCatch(addBindingFromSelection));
$("#goto").click(() => tryCatch(gotoBinding));
$("#remove").click(() => tryCatch(removeBinding));
async function addBindingFromSelection()
{
Office.context.document.bindings.addFromSelectionAsync(Office.BindingType.Text, { id: 'MyBinding' },
function (asyncResult) {
console.log('Added new binding with type: ' + asyncResult.value.type + ' and id: ' + asyncResult.value.id);
}
);
}
async function gotoBinding()
{
let options = { selectionMode: Office.SelectionMode.None };
Office.context.document.goToByIdAsync("MyBinding", Office.GoToType.Binding, options, function (asyncResult) {
if (asyncResult.status == "failed") {
console.log("Action failed with error: " + asyncResult.error.message);
}
else {
console.log("Navigation successful");
}
});
}
async function removeBinding()
{
Office.context.document.bindings.releaseByIdAsync("MyBinding", function (asyncResult) {
console.log("Released MyBinding!");
});
}
/** Default helper for invoking an action and handling errors. */
async function tryCatch(callback)
{
try {
await callback();
}
catch (error) {
OfficeHelpers.UI.notify(error);
OfficeHelpers.Utilities.log(error);
}
}
language: typescript
template:
content: |-
<button id="add" class="ms-Button">
<span class="ms-Button-label">Add binding</span>
</button>
<button id="goto" class="ms-Button">
<span class="ms-Button-label">Goto Binding</span>
</button>
<button id="remove" class="ms-Button">
<span class="ms-Button-label">Remove Binding</span>
</button>
language: html
style:
content: |-
section.samples {
margin-top: 20px;
}
section.samples .ms-Button, section.setup .ms-Button {
display: block;
margin-bottom: 5px;
margin-left: 20px;
min-width: 80px;
}
language: css
libraries: |
https://appsforoffice.microsoft.com/lib/1/hosted/office.js
@types/office-js
office-ui-fabric-js@1.4.0/dist/css/fabric.min.css
office-ui-fabric-js@1.4.0/dist/css/fabric.components.min.css
core-js@2.4.1/client/core.min.js
@types/core-js
@microsoft/office-js-helpers@0.7.4/dist/office.helpers.min.js
@microsoft/office-js-helpers@0.7.4/dist/office.helpers.d.ts
jquery@3.1.1
@types/jquery@3.3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment