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.
getCount()Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.

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;

getCount()

Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;