corelibraries-devexpress-dot-xtrapivotgrid-dot-pivotgridoptionsprint-6b615496.md
Gets or sets whether a cell is allowed to be split across pages.
Namespace : DevExpress.XtraPivotGrid
Assembly : DevExpress.PivotGrid.v25.2.Core.dll
NuGet Packages : DevExpress.PivotGrid.Core, DevExpress.Win.Navigation
[DefaultValue(VerticalContentSplitting.Smart)]
public virtual VerticalContentSplitting VerticalContentSplitting { get; set; }
<DefaultValue(VerticalContentSplitting.Smart)>
Public Overridable Property VerticalContentSplitting As VerticalContentSplitting
| Type | Default | Description |
|---|---|---|
| VerticalContentSplitting | Smart |
A VerticalContentSplitting enumeration value.
|
Available values:
| Name | Description |
|---|---|
| Exact |
When the brick dimensions do not fit into the right page margin, the rest of the brick content is split across two pages.
| | Smart |
When the brick dimensions do not fit into the right page margin, the brick content is moved to a new page in its entirety.
|
You can access this nested property as listed below:
| Object Type | Path to VerticalContentSplitting |
|---|---|
| PivotGridControl |
.OptionsPrint .VerticalContentSplitting
|
Note that the VerticalContentSplitting property is used to customize Pivot Grid export settings when data is exported in the WYSIWYG export mode. This property is not in effect for the data-aware mode. To customize the Pivot Grid export settings while exporting in data-aware mode, use the PivotXlsExportOptions and PivotXlsxExportOptions descendants.
See Also