WebExtensionProperty
Contents
[
Hide
]WebExtensionProperty class
Represents an Office Add-in custom property.
class WebExtensionProperty;
Methods
Method | Description |
---|---|
getName() | Gets and set a custom property name. |
setName(string) | Gets and set a custom property name. |
getValue() | Gets and sets a custom property value. |
setValue(string) | Gets and sets a custom property value. |
isNull() | Checks whether the implementation object is null. |
getName()
Gets and set a custom property name.
getName() : string;
setName(string)
Gets and set a custom property name.
setName(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getValue()
Gets and sets a custom property value.
getValue() : string;
setValue(string)
Gets and sets a custom property value.
setValue(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;