WebExtensionBinding

WebExtensionBinding class

Represents a binding relationship between an Office Add-in and the data in the document.

class WebExtensionBinding;

Constructors

NameDescription
constructor()Default Constructor.

Methods

MethodDescription
getId()Gets and sets the binding identifier.
setId(string)Gets and sets the binding identifier.
getType()Gets and sets the binding type.
setType(string)Gets and sets the binding type.
getAppref()Gets and sets the binding key used to map the binding entry in this list with the bound data in the document.
setAppref(string)Gets and sets the binding key used to map the binding entry in this list with the bound data in the document.
isNull()Checks whether the implementation object is null.

constructor()

Default Constructor.

constructor();

getId()

Gets and sets the binding identifier.

getId() : string;

setId(string)

Gets and sets the binding identifier.

setId(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getType()

Gets and sets the binding type.

getType() : string;

setType(string)

Gets and sets the binding type.

setType(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getAppref()

Gets and sets the binding key used to map the binding entry in this list with the bound data in the document.

getAppref() : string;

setAppref(string)

Gets and sets the binding key used to map the binding entry in this list with the bound data in the document.

setAppref(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;