GenericObject ExpandLeftAsync Method Qlik Sense .NET SDK - API Reference

Expands the left dimensions of a pivot table. This method applies only to pivot tables that are not always fully expanded.

In the definition of the hypercube (in HyperCubeDef), the parameter qAlwaysFullyExpanded must be set to false.

Namespace: Qlik.Engine
Assembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.0.1.0 (1.0.1.0)
Syntax

public Task ExpandLeftAsync(
	string path,
	int row,
	int col,
	bool all,
	string userHandle = null
)

Parameters

path
Type: OnlineSystem String
Path to the definition of the object to be expanded For example, /qHyperCubeDef. This parameter is mandatory.
row
Type: OnlineSystem Int32
Row index in the data matrix to expand. Indexing starts from 0.
col
Type: OnlineSystem Int32
Column index. The index is based on the left dimension indexes. Indexing starts from 0.
all
Type: OnlineSystem Boolean
If set to true, it expands all cells. Parameters qRow and qCol are not used if qAll is set to true, but they need to be set (for example to 0).
userHandle (Optional)
Type: OnlineSystem String
Handle identifier

Return Value

Type: OnlineTask

Implements

IGenericObject ExpandLeftAsync(String, Int32, Int32, Boolean, String)
See Also