PowerQueryFormulaParameter
Contents
[
Hide
]PowerQueryFormulaParameter class
Represents the parameter of power query formula.
class PowerQueryFormulaParameter extends PowerQueryFormula;
Constructors
Name | Description |
---|---|
constructor(PowerQueryFormula) | Constructs from a parent object convertible to this. |
Properties
Property | Type | Description |
---|---|---|
value | string | Gets the value of parameter. |
groupName | string | Readonly. Gets the name of group which contains this power query formula. |
name | string | Gets and sets the name of the power query formula. |
description | string | Gets and sets the description of the power query formula. |
powerQueryFormulaItems | PowerQueryFormulaItemCollection | Readonly. Gets all items of power query formula. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
obj | PowerQueryFormula | The 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
getFormulaDefinition()
Gets the definition of the parameter.
getFormulaDefinition() : string;