PowerQueryFormulaItem

PowerQueryFormulaItem class

Represents the item of the power query formula.

class PowerQueryFormulaItem;

Properties

PropertyTypeDescription
namestringReadonly. Gets the name of the item.
valuestringGets the value of the item.

Methods

MethodDescription
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:

ParameterTypeDescription
valuestringThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;