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. |
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
obj | PowerQueryFormula | The parent object. |
getType()
Gets the type of power query formula.
getType() : PowerQueryFormulaType;
Returns
getValue()
Gets the value of parameter.
getValue() : string;
setValue(string)
Gets the value of parameter.
setValue(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The 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:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getPowerQueryFormulaItems()
Gets all items of power query formula.
getPowerQueryFormulaItems() : PowerQueryFormulaItemCollection;
Returns