Skip to main content
Tag

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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