ASPxGridViewExportSettings.SplitDataCellAcrossPages Property
Gets or sets whether data cells are allowed to be split across pages when exporting.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Property Paths
You can access this nested property as listed below:
Object Type | Path to SplitDataCellAcrossPages |
---|---|
ASPxGridView |
|
Remarks
Use the SplitDataCellAcrossPages property to specify whether the tree list should split data cells when exporting.
<dx:ASPxGridView ID="Grid" runat="server" DataSourceID="HomesDataSource" Width="100%" OnExportRenderBrick="grid_RenderBrick">
...
<SettingsExport SplitDataCellAcrossPages="true" EnableClientSideExportAPI="true" ExcelExportMode="WYSIWYG" />
</dx:ASPxGridView>
The images below illustrate how the exported tree list data is displayed when the SplitDataCellAcrossPages property is enabled or disabled.
SplitDataCellAcrossPages=true | SplitDataCellAcrossPages=false |
---|---|
See Also