Skip to main content
Tag

ColumnBase.ColumnChooserHeaderCaption Property

Gets or sets the column’s caption when its header is displayed within the Column Chooser. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v23.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public object ColumnChooserHeaderCaption { get; set; }

Property Value

Type Description
Object

An object that represents the column’s caption when its header is displayed within the Column Chooser.

Remarks

If the column’s BaseColumn.ShowInColumnChooser property is set to true, its header is displayed within the Column Chooser.

The default caption of the header displayed within the Column Chooser is returned by the column’s BaseColumn.HeaderCaption property. If you don’t want the default caption to be displayed, you can provide a custom caption by specifying the ColumnChooserHeaderCaption property.

To determine the column’s actual caption when its header is displayed within the Column Chooser, use the ColumnBase.ActualColumnChooserHeaderCaption property.

To learn more, see Column Header Customization.

See Also