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.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:
Library | Object Type | Path to SplitDataCellAcrossPages |
---|---|---|
ASP.NET Web Forms Controls | ASPxTreeListExporter |
|
ASP.NET MVC Extensions | MVCxTreeListSettingsExport |
|
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 |
---|---|
See Also