Version

DataExportMode Enumeration

Determines how the export will handle grids with paging and load on demand enabled. Used by the UltraWebGridDocumentExporter.DataExportMode property.
Syntax
'Declaration
 
Public Enum DataExportMode 
   Inherits System.Enum
public enum DataExportMode : System.Enum 
Members
MemberDescription
AllDataInDataSourceBind the grid to the entire data source before exporting and create a document that contains all of the rows without any feature data view manipulations, like paging, filtering, load on demand, etc. This is the default option.
DataInGridOnlyOnly export the rows that are currently visible in the grid. Don't make any attempt to rebind to the data. Useful for when custom logic is needed to decide which rows should be exported.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also