Skip to main content
A newer version of this page is available. .

ASPxTreeListPrintSettings.SplitDataCellAcrossPages Property

Gets or sets whether data cells are allowed to be split across pages when exporting.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v19.2.dll

Declaration

[DefaultValue(false)]
public bool SplitDataCellAcrossPages { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if data cells are allowed to be split across pages when exporting; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to SplitDataCellAcrossPages
ASPxTreeList
.SettingsExport.SplitDataCellAcrossPages
ASPxTreeListExporter
.Settings.SplitDataCellAcrossPages
MVCxTreeList
.SettingsExport.SplitDataCellAcrossPages
MVCxTreeListExporter
.Settings.SplitDataCellAcrossPages
MVCxTreeListSettingsExport
.PrintSettings.SplitDataCellAcrossPages

Remarks

Use the SplitDataCellAcrossPages property to specify whether the tree list should split data cells when exporting.

<dx:ASPxTreeList ID="treeList" runat="server" Width="100%" AutoGenerateColumns="False" DataSourceID="HomesDataSource" KeyFieldName="ID" ParentFieldName="ParentID">
    <SettingsExport EnableClientSideExportAPI="True" SplitDataCellAcrossPages="true" />
    ...
</dx:ASPxTreeList>

The images below illustrate how the exported tree list data is displayed when the SplitDataCellAcrossPages property is enabled or disabled.

SplitDataCellAcrossPages=true SplitDataCellAcrossPages=false
ASPxGridView-Export-SplitCells-true ASPxGridView-Export-SplitCells-false
See Also