windowsforms-devexpress-dot-xtragrid-dot-columns-dot-gridcolumn-18e3899f.md
Gets or sets the column’s caption when its header is displayed within the Customization Form.
Namespace : DevExpress.XtraGrid.Columns
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue("")]
[DXCategory("Appearance")]
[XtraSerializableProperty]
public string CustomizationCaption { get; set; }
<DXCategory("Appearance")>
<DefaultValue("")>
<XtraSerializableProperty>
Public Property CustomizationCaption As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A String value which specifies the column’s caption when its header is displayed within the Customization Form.
|
The column’s header is displayed within the Customization Form when the column is hidden (its GridColumn.Visible property is set to false ) and its OptionsColumn.ShowInCustomizationForm option is set to true. Use the CustomizationCaption property to specify the text which is displayed within the header of the hidden column. Otherwise, if this property isn’t specified, the column’s caption is specified by the GridColumn.Caption property.
See Also