Bindings.getAllAsync method
Gets all bindings that were previously created.
|
|
| Hosts: |
Access, Excel, Word |
| Available in Requirement set |
MatrixBindings, TableBindings, TextBindings |
| Last changed |
1.1 |
bindingsObj.getAllAsync([options], callback);
Parameters
| Name |
Type |
Description |
Support notes |
| options |
object |
Specifies any of the following optional parameters |
|
| asyncContext |
array, boolean, null, number, object, string, or undefined |
A user-defined item of any type that is returned in the AsyncResult object without being altered. |
|
| callback |
object |
A function that is invoked when the callback returns, whose only parameter is of type AsyncResult. |
|
Callback Value
When the function you passed to the callback parameter executes, it receives an AsyncResult object that you can access from the callback function's only parameter.
In the callback function passed to the getAllAsync method, you can use the properties of the AsyncResult object to return the following information.
Example
function displayAllBindingNames() {
Office.context.document.bindings.getAllAsync(function (asyncResult) {
var bindingString = '';
for (var i in asyncResult.value) {
bindingString += asyncResult.value[i].id + '\n';
}
write('Existing bindings: ' + bindingString);
});
}
// Function that writes to a div with id='message' on the page.
function write(message){
document.getElementById('message').innerText += message;
}
Support details
A capital Y in the following matrix indicates that this method is supported in the corresponding Office host application. An empty cell indicates that the Office host application doesn't support this method.
For more information about Office host application and server requirements, see Requirements for running Office Add-ins.
|
Office for Windows desktop |
Office Online (in browser) |
Office for iPad |
| Access |
|
Y |
|
| Excel |
Y |
Y |
Y |
| Word |
Y |
Y |
Y |
|
|
| Available in requirement sets |
MatrixBindings, TableBindings, TextBindings |
| Minimum permission level |
Restricted |
| Add-in types |
Content, task pane |
| Library |
Office.js |
| Namespace |
Office |
Support history
| Version |
Changes |
| 1.1 |
Added support for Excel and Word in Office for iPad. |
| 1.1 |
Added support for table binding in content add-ins for Access. |
| 1.0 |
Introduced |