PowerQueryFormulaParameterCollection
Contents
[
Hide
]PowerQueryFormulaParameterCollection class
Represents the parameters of power query formula.
class PowerQueryFormulaParameterCollection;
Remarks
NOTE: This class is now obsolete. Instead, please use PowerQueryFormulaCollection class. This property will be removed 12 months later since November 2024. Aspose apologizes for any inconvenience you may have experienced.
Constructors
Name | Description |
---|---|
constructor() | Default Constructor. |
Methods
Method | Description |
---|---|
get(number) | Gets [ PowerQueryFormulaParameter](../ powerqueryformulaparameter/) by the index in the list. |
get(string) | Gets [ PowerQueryFormulaParameter](../ powerqueryformulaparameter/) by the name of the item. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
constructor()
Default Constructor.
constructor();
get(number)
Gets [ PowerQueryFormulaParameter](../ powerqueryformulaparameter/) by the index in the list.
get(index: number) : PowerQueryFormulaParameter;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The index. |
Returns
get(string)
Gets [ PowerQueryFormulaParameter](../ powerqueryformulaparameter/) by the name of the item.
get(name: string) : PowerQueryFormulaParameter;
Parameters:
Parameter | Type | Description |
---|---|---|
name | string | The name of the item. |
Returns
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;