CreateSessionVariableAsync Method
Overloads
CreateSessionVariableAsync<T>(AsyncHandle, Func<Response, T>, GenericVariableProperties) |
Creates a transient variable. DefinitionA variable in Qlik Sense is a named entity, containing a data value. This value can be static or be the result of a calculation. A variable acquires its value at the same time that the variable is created or after when updating the properties of the variable. Variables can be used in bookmarks and can contain numeric or alphanumeric data. Any change made to the variable is applied everywhere the variable is used. When a variable is used in an expression, it is substituted by its value or the variable's definition. ExampleThe variable In a chart, you define the expression However, if you change the value of the variable |
|
CreateSessionVariableAsync(GenericVariableProperties) |
Creates a transient variable. DefinitionA variable in Qlik Sense is a named entity, containing a data value. This value can be static or be the result of a calculation. A variable acquires its value at the same time that the variable is created or after when updating the properties of the variable. Variables can be used in bookmarks and can contain numeric or alphanumeric data. Any change made to the variable is applied everywhere the variable is used. When a variable is used in an expression, it is substituted by its value or the variable's definition. ExampleThe variable In a chart, you define the expression However, if you change the value of the variable |
|
CreateSessionVariableAsync(AsyncHandle, GenericVariableProperties) |
Creates a transient variable. DefinitionA variable in Qlik Sense is a named entity, containing a data value. This value can be static or be the result of a calculation. A variable acquires its value at the same time that the variable is created or after when updating the properties of the variable. Variables can be used in bookmarks and can contain numeric or alphanumeric data. Any change made to the variable is applied everywhere the variable is used. When a variable is used in an expression, it is substituted by its value or the variable's definition. ExampleThe variable In a chart, you define the expression However, if you change the value of the variable |
CreateSessionVariableAsync<T>(AsyncHandle, Func<Response, T>, GenericVariableProperties)
Creates a transient variable.
Definition
A variable in Qlik Sense is a named entity, containing a data value. This value can be static or be the result of a calculation. A variable acquires its value at the same time that the variable is created or after when updating the properties of the variable. Variables can be used in bookmarks and can contain numeric or alphanumeric data. Any change made to the variable is applied everywhere the variable is used.
When a variable is used in an expression, it is substituted by its value or the variable's definition.
Example
The variable x
contains the text string Sum(Sales)
.
In a chart, you define the expression $(x)/12
. The effect is exactly the same as having the chart expression Sum(Sales)/12
.
However, if you change the value of the variable x
to Sum(Budget)
, the data in the chart are immediately recalculated with the expression interpreted as Sum(Budget)/12
.
Declaration
public Task<T> CreateSessionVariableAsync<T>(AsyncHandle asyncHandle, Func<Response, T> onResult, [QixName("qProp")] GenericVariableProperties prop)
Parameters
Type | Name | Description |
---|---|---|
AsyncHandle | asyncHandle |
Handle to asynchronous method request |
System.Func<Response, T> | onResult |
Continuation function |
GenericVariableProperties | prop |
Name of the variable. Variable names are case sensitive. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<T> |
Type Parameters
Name | Description |
---|---|
T |
Implements
Remarks
To set some properties to the variable, use the SetProperties method
.
CreateSessionVariableAsync(GenericVariableProperties)
Creates a transient variable.
Definition
A variable in Qlik Sense is a named entity, containing a data value. This value can be static or be the result of a calculation. A variable acquires its value at the same time that the variable is created or after when updating the properties of the variable. Variables can be used in bookmarks and can contain numeric or alphanumeric data. Any change made to the variable is applied everywhere the variable is used.
When a variable is used in an expression, it is substituted by its value or the variable's definition.
Example
The variable x
contains the text string Sum(Sales)
.
In a chart, you define the expression $(x)/12
. The effect is exactly the same as having the chart expression Sum(Sales)/12
.
However, if you change the value of the variable x
to Sum(Budget)
, the data in the chart are immediately recalculated with the expression interpreted as Sum(Budget)/12
.
Declaration
public Task<GenericVariable> CreateSessionVariableAsync([QixName("qProp")] GenericVariableProperties prop)
Parameters
Type | Name | Description |
---|---|---|
GenericVariableProperties | prop |
Name of the variable. Variable names are case sensitive. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GenericVariable> |
Implements
Remarks
To set some properties to the variable, use the SetProperties method
.
CreateSessionVariableAsync(AsyncHandle, GenericVariableProperties)
Creates a transient variable.
Definition
A variable in Qlik Sense is a named entity, containing a data value. This value can be static or be the result of a calculation. A variable acquires its value at the same time that the variable is created or after when updating the properties of the variable. Variables can be used in bookmarks and can contain numeric or alphanumeric data. Any change made to the variable is applied everywhere the variable is used.
When a variable is used in an expression, it is substituted by its value or the variable's definition.
Example
The variable x
contains the text string Sum(Sales)
.
In a chart, you define the expression $(x)/12
. The effect is exactly the same as having the chart expression Sum(Sales)/12
.
However, if you change the value of the variable x
to Sum(Budget)
, the data in the chart are immediately recalculated with the expression interpreted as Sum(Budget)/12
.
Declaration
public Task<GenericVariable> CreateSessionVariableAsync(AsyncHandle asyncHandle, [QixName("qProp")] GenericVariableProperties prop)
Parameters
Type | Name | Description |
---|---|---|
AsyncHandle | asyncHandle |
Handle to asynchronous method request |
GenericVariableProperties | prop |
Name of the variable. Variable names are case sensitive. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<GenericVariable> |
Implements
Remarks
To set some properties to the variable, use the SetProperties method
.
Did this page help you?
If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!