IAppGetTableDataAsyncT Method (Int32, Int32, Boolean, String, FuncResponse, T, AsyncHandle) |
Retrieves the data of a specific table.
Namespace: Qlik.EngineAssembly: Qlik.Engine (in Qlik.Engine.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax Task<T> GetTableDataAsync<T>(
int offset,
int rows,
bool syntheticMode,
string tableName,
Func<Response, T> onResult,
AsyncHandle asyncHandle = null
)
Function GetTableDataAsync(Of T) (
offset As Integer,
rows As Integer,
syntheticMode As Boolean,
tableName As String,
onResult As Func(Of Response, T),
Optional asyncHandle As AsyncHandle = Nothing
) As Task(Of T)
Parameters
- offset
- Type: SystemInt32
Position from the top, starting from 0.
If the offset is set to 0, the rows starting from the position/index 0 are showed. - rows
- Type: SystemInt32
Number of rows to show - syntheticMode
- Type: SystemBoolean
If this parameter is set to true, the internal data/table representation is shown. Synthetic fields are present (if any). - tableName
- Type: SystemString
Name of the table - onResult
- Type: SystemFuncResponse, T
Continuation function - asyncHandle (Optional)
- Type: Qlik.EngineAsyncHandle
Handle to asyncronous method request
Type Parameters
- T
Return Value
Type:
TaskTSee Also