FieldLowLevelSelectAsyncT Method (IEnumerableInt32, Boolean, Boolean, FuncResponse, T, AsyncHandle) |
Selects some values in a field.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax public Task<T> LowLevelSelectAsync<T>(
IEnumerable<int> values,
bool toggleMode,
bool softLock = false,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Public Function LowLevelSelectAsync(Of T) (
values As IEnumerable(Of Integer),
toggleMode As Boolean,
Optional softLock As Boolean = false,
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- values
- Type: System.Collections.GenericIEnumerableInt32
Indexes (or element numbers) of the values to select. - toggleMode
- Type: SystemBoolean
Set to true to keep any selections present in the list object.
If this parameter is set to false, selections made before accepting the list object search become alternative.
This parameter is mandatory. - softLock (Optional)
- Type: SystemBoolean
Set to true to ignore locks; in that case, locked fields can be selected.
The default value is false.
This parameter is optional. - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTImplements
IFieldLowLevelSelectAsyncT(IEnumerableInt32, Boolean, Boolean, FuncResponse, T, AsyncHandle)See Also