WebExtensionProperty
Contents
[
Hide
]WebExtensionProperty class
Represents an Office Add-in custom property.
class WebExtensionProperty;
Properties
| Property | Type | Description |
|---|---|---|
| name | string | Gets and set a custom property name. |
| value | string | Gets and sets a custom property value. |
Methods
| Method | Description |
|---|---|
| getName() | @deprecated. Please use the ’name’ property instead. Gets and set a custom property name. |
| setName(string) | @deprecated. Please use the ’name’ property instead. Gets and set a custom property name. |
| getValue() | @deprecated. Please use the ‘value’ property instead. Gets and sets a custom property value. |
| setValue(string) | @deprecated. Please use the ‘value’ property instead. Gets and sets a custom property value. |
| isNull() | Checks whether the implementation object is null. |
name
Gets and set a custom property name.
name : string;
value
Gets and sets a custom property value.
value : string;
getName()
@deprecated. Please use the ’name’ property instead. Gets and set a custom property name.
getName() : string;
setName(string)
@deprecated. Please use the ’name’ property instead. Gets and set a custom property name.
setName(value: string) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | string | The value to set. |
getValue()
@deprecated. Please use the ‘value’ property instead. Gets and sets a custom property value.
getValue() : string;
setValue(string)
@deprecated. Please use the ‘value’ property instead. 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;