CustomProperty
Contents
[
Hide
]CustomProperty class
Represents identifier information.
class CustomProperty;
Constructors
Constructor | Description |
---|---|
constructor() | Default Constructor. |
Properties
Property | Type | Description |
---|---|---|
name | string | Returns or sets the name of the object. |
value | string | Returns or sets the value of the custom property. |
Methods
Method | Description |
---|---|
getName() | @deprecated. Please use the ’name’ property instead. Returns or sets the name of the object. |
setName(string) | @deprecated. Please use the ’name’ property instead. Returns or sets the name of the object. |
getValue() | @deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property. |
setValue(string) | @deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
name
Returns or sets the name of the object.
name : string;
value
Returns or sets the value of the custom property.
value : string;
getName()
@deprecated. Please use the ’name’ property instead. Returns or sets the name of the object.
getName() : string;
setName(string)
@deprecated. Please use the ’name’ property instead. Returns or sets the name of the object.
setName(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getValue()
@deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property.
getValue() : string;
setValue(string)
@deprecated. Please use the ‘value’ property instead. Returns or sets the value of the custom property.
setValue(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;