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.

Properties

PropertyTypeDescription
valuestringGets the value of parameter.
groupNamestringReadonly. Gets the name of group which contains this power query formula.
namestringGets and sets the name of the power query formula.
descriptionstringGets and sets the description of the power query formula.
powerQueryFormulaItemsPowerQueryFormulaItemCollectionReadonly. Gets all items of power query formula.

Methods

MethodDescription
getType()Gets the type of power query formula.
getFormulaDefinition()Gets the definition of the parameter.

constructor(PowerQueryFormula)

Constructs from a parent object convertible to this.

constructor(obj: PowerQueryFormula);

Parameters:

ParameterTypeDescription
objPowerQueryFormulaThe parent object.

value

Gets the value of parameter.

value : string;

groupName

Readonly. Gets the name of group which contains this power query formula.

groupName : string;

name

Gets and sets the name of the power query formula.

name : string;

description

Gets and sets the description of the power query formula.

description : string;

powerQueryFormulaItems

Readonly. Gets all items of power query formula.

powerQueryFormulaItems : PowerQueryFormulaItemCollection;

getType()

Gets the type of power query formula.

getType() : PowerQueryFormulaType;

Returns

PowerQueryFormulaType

getFormulaDefinition()

Gets the definition of the parameter.

getFormulaDefinition() : string;