Skip to main content

GridColumn.Tag Property

Gets or sets the data associated with the column.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v22.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

[DefaultValue(null)]
[DXCategory("Data")]
[XtraSerializableProperty]
public virtual object Tag { get; set; }

Property Value

Type Default Description
Object null

An object containing information which is associated with the column.

Remarks

This property can be used to store any object that you want to associate with a column. Any type derived from the Object class can be assigned to this property via code. At design time, a specially designed dialog is used to set this property’s value. This dialog enables you to choose the data type and enter the desired value.

See Also