IFieldLowLevelSelectAsyncT Method (AsyncHandle, FuncResponse, T, IEnumerableInt32, Boolean, Boolean) |
Selects some values in a field, by entering the element numbers related to the values to select.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 2.1.0.0+Build:7.origin/release/ms13
SyntaxTask<T> LowLevelSelectAsync<T>(
AsyncHandle asyncHandle,
Func<Response, T> onResult,
IEnumerable<int> values,
bool toggleMode,
bool softLock = false
)
Function LowLevelSelectAsync(Of T) (
asyncHandle As AsyncHandle,
onResult As Func(Of Response, T),
values As IEnumerable(Of Integer),
toggleMode As Boolean,
Optional softLock As Boolean = false
) As Task(Of T)
Parameters
- asyncHandle
- Type: Qlik.EngineAsyncHandle
Handle to asynchronous method request - onResult
- Type: SystemFuncResponse, T
Continuation function - 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.
Type Parameters
- T
Return Value
Type:
TaskT
See Also