PowerQueryFormulaParameter

PowerQueryFormulaParameter class

Represents the parameter of power query formula.

class PowerQueryFormulaParameter extends PowerQueryFormula;

Constructors

NameDescription
constructor(PowerQueryFormula)Constructs from a parent object convertible to this.

Methods

MethodDescription
getType()Gets the type of power query formula.
getValue()Gets the value of parameter.
setValue(string)Gets the value of parameter.
getFormulaDefinition()Gets the definition of the parameter.
isNull()Checks whether the implementation object is null.
getName()Gets and sets the name of the power query formula.
setName(string)Gets and sets the name of the power query formula.
getPowerQueryFormulaItems()Gets all items of power query formula.

constructor(PowerQueryFormula)

Constructs from a parent object convertible to this.

constructor(obj: PowerQueryFormula);

Parameters:

ParameterTypeDescription
objPowerQueryFormulaThe parent object.

getType()

Gets the type of power query formula.

getType() : PowerQueryFormulaType;

Returns

PowerQueryFormulaType

getValue()

Gets the value of parameter.

getValue() : string;

setValue(string)

Gets the value of parameter.

setValue(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getFormulaDefinition()

Gets the definition of the parameter.

getFormulaDefinition() : string;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;

getName()

Gets and sets the name of the power query formula.

getName() : string;

setName(string)

Gets and sets the name of the power query formula.

setName(value: string) : void;

Parameters:

ParameterTypeDescription
valuestringThe value to set.

getPowerQueryFormulaItems()

Gets all items of power query formula.

getPowerQueryFormulaItems() : PowerQueryFormulaItemCollection;

Returns

PowerQueryFormulaItemCollection