PowerQueryFormulaItem

PowerQueryFormulaItem class

Represents the item of the power query formula.

class PowerQueryFormulaItem;

Properties

PropertyTypeDescription
namestringReadonly. Gets the name of the item.
valuestringGets the value of the item.
textValuestringReadonly. Gets the text value of the item.
itemTypePowerQueryFormulaItemTypeReadonly. Gets the type of this item (Function, Parameter, List, Literal, or Unknown).
isFunctionbooleanReadonly. Gets whether this item is a function.
isParameterbooleanReadonly. Gets whether this item is a parameter.
isListbooleanReadonly. Gets whether this item is a list.
isLiteralbooleanReadonly. Gets whether this item is a literal value.

name

Readonly. Gets the name of the item.

name : string;

value

Gets the value of the item.

value : string;

textValue

Readonly. Gets the text value of the item.

textValue : string;

itemType

Readonly. Gets the type of this item (Function, Parameter, List, Literal, or Unknown).

itemType : PowerQueryFormulaItemType;

isFunction

Readonly. Gets whether this item is a function.

isFunction : boolean;

isParameter

Readonly. Gets whether this item is a parameter.

isParameter : boolean;

isList

Readonly. Gets whether this item is a list.

isList : boolean;

isLiteral

Readonly. Gets whether this item is a literal value.

isLiteral : boolean;