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

ProcessHiddenCellMode Enum

Lists the available modes for processing hidden cells in the XRTable control.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v19.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

public enum ProcessHiddenCellMode

Members

Name Description
LeaveEmptySpace

Empty space remains on a hidden cell’s location and other cells are not affected.

ResizeCellsEqually

All visible cells are resized to equally divide the space that a hidden cell reserved.

ResizeCellsProportionally

All visible cells are resized to proportionally divide the space that a hidden cell reserved based on their weights in the whole table width.

StretchPreviousCell

A cell located to the left of the hidden cell is stretched to occupy the available space. If the hidden cell is the first in the row, the next cell is stretched.

StretchNextCell

A cell located to the right of the hidden cell is stretched to occupy the available space. If the hidden cell is the last in the row, the previous cell is stretched.

DecreaseTableWidth

The table width is decreased and visible cells are shifted to a hidden cell’s location without changing their size.

Related API Members

The following properties accept/return ProcessHiddenCellMode values:

Remarks

A ProcessHiddenCellMode enumeration value is returned by the XRTable.ProcessHiddenCellMode property.

See Also