WebExtensionBindingCollection

WebExtensionBindingCollection class

Represents the list of binding relationships between an Office Add-in and the data in the document.

class WebExtensionBindingCollection;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
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:

ParameterTypeDescription
indexnumberThe 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;