WebExtensionBindingCollection
Contents
[
Hide
]WebExtensionBindingCollection class
Represents the list of binding relationships between an Office Add-in and the data in the document.
class WebExtensionBindingCollection;
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
get(number) | Gets web extension binding relationship by the specific index. |
add() | Adds an a binding relationship between an Office Add-in and the data in the document. |
constructor()
Default Constructor.
constructor();
get(number)
Gets web extension binding relationship by the specific index.
get(index: number) : WebExtensionBinding;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The index. |
Returns
The web extension binding relationship
add()
Adds an a binding relationship between an Office Add-in and the data in the document.
add() : number;