IGenericObjectSearchListObjectForAsync Method (String, String, AsyncHandle) |
Searches for a string in a list object.
This method applies to list objects (objects with one dimension).The search results can be displayed using the GetLayout method.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax Task<bool> SearchListObjectForAsync(
string path,
string match,
AsyncHandle asyncHandle = null
)
Function SearchListObjectForAsync (
path As String,
match As String,
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of Boolean)
Parameters
- path
- Type: SystemString
Path to the definition of the list object.
For example, /qListObjectDef. - match
- Type: SystemString
Search string
Wild card characters are allowed. The search is not case sensitive.
Examples:
P*U*: retrieves only values that start with P and contain U
P U S: retrieves values that start with P, U or S - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Return Value
Type:
TaskBooleanSee Also