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

XRCrossTabCell.ColumnVisible Property

Specifies whether to print the entire column in which a cell is located.

Namespace: DevExpress.XtraReports.UI.CrossTab

Assembly: DevExpress.XtraReports.v19.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[DefaultValue(true)]
[SRCategory(ReportStringId.CatBehavior)]
public bool ColumnVisible { get; set; }

Property Value

Type Default Description
Boolean true

true, to print the column that contains a cell; otherwise, false.

Remarks

Select a cell and disable the ColumnVisible property to hide the entire column. The updated property value applies to all the cells in the corresponding column. At design time, invisible cells are filled with a hatch brush.

For instance, disable this property for any cell in the last column to hide column grand totals.

Note

This property is not available if a cell spans two or more columns (the ColumnSpan property value is greater than 1).

Use the cell’s RowVisible property to hide the entire row.

See Also