PowerQueryFormulaItem
Contents
[
Hide
]PowerQueryFormulaItem class
Represents the item of the power query formula.
class PowerQueryFormulaItem;
Properties
Property | Type | Description |
---|---|---|
name | string | Readonly. Gets the name of the item. |
value | string | Gets the value of the item. |
Methods
Method | Description |
---|---|
getName() | @deprecated. Please use the ’name’ property instead. Gets the name of the item. |
getValue() | @deprecated. Please use the ‘value’ property instead. Gets the value of the item. |
setValue(string) | @deprecated. Please use the ‘value’ property instead. Gets the value of the item. |
isNull() | Checks whether the implementation object is null. |
name
Readonly. Gets the name of the item.
name : string;
value
Gets the value of the item.
value : string;
getName()
@deprecated. Please use the ’name’ property instead. Gets the name of the item.
getName() : string;
getValue()
@deprecated. Please use the ‘value’ property instead. Gets the value of the item.
getValue() : string;
setValue(string)
@deprecated. Please use the ‘value’ property instead. Gets the value of the item.
setValue(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;