IHostManagementExportDataExcelAsync Method

Exports a table according to the indicated parameters to an excel file asynchronously.

Definition

Namespace: Aliquo.Windows
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
Task ExportDataExcelAsync(
	string table,
	string fields,
	string condition,
	string order,
	string fileName,
	string excelSheet,
	List<ExcelColumnTable> excelColumns
)

Parameters

table  String
Table on which the export.
fields  String
Fields to return the value.
condition  String
Query criteria.
order  String
Fields and query ordering expression.
fileName  String
File name.
excelSheet  String
Excel sheet.
excelColumns  ListExcelColumnTable
ExcelColumnTable with the excel columns.

Return Value

Task
A task representing the asynchronous operation.

See Also