Click or drag to resize

ExcelExportMode Enumeration

Options affecting how to determine whether an Excel export is executed online, or offline.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public enum ExcelExportMode
Members
  Member nameValueDescription
Legacy0Excel export uses legacy code base and exports are always executed online. When the user executes an export they have to wait for the export to complete and for the excel spreadsheet to be downloaded.
AlwaysOnline1Excel exports requested by the user are always executed online. Detailed export statistics are logged in this mode. When the user executes an export they have to wait for the export to complete and for the excel spreadsheet to be downloaded.
AlwaysOffline2Excel exports requested by the user are always executed offline. Detailed export statistics are logged in this mode. When the export is completed, the user can download the exported file. Optionally, the exported file may be emailed to the user if the exported file is not too large.
Smart3An excel export requested by the user may complete online, or may be queued for export offline. Detailed export statistics are logged in this mode. Whether an export is offline, or online is based on gathered statistics for previous exports. If the statistics show an export would take longer than a certain threhsold of time, the export would be automaticaly queued offline.
See Also