GridColumn.Name Property
Gets or sets the column name.
Namespace: DevExpress.XtraGrid.Columns
Assembly: DevExpress.XtraGrid.v19.1.dll
Declaration
[Browsable(false)]
[DefaultValue("")]
[XtraSerializableProperty]
[XtraSerializablePropertyId(-1)]
public virtual string Name { get; set; }
<Browsable(False)>
<DefaultValue("")>
<XtraSerializableProperty>
<XtraSerializablePropertyId(-1)>
Public Overridable Property Name As String
Property Value
Type | Default | Description |
---|---|---|
String | A String value specifying the column name. |
Remarks
GridColumn objects are Component descendants, so they can be directly accessed in code using their names. Therefore, the Name property specifies the string that can be used in code to access the column. Note that changing the Name property at runtime has no effect.
You can also use the Name property to identify a column when handling column related events, etc. Refer to the Columns help topic for more information on identifying columns.
NOTE
When saving/restoring a View's layout, ensure that column names are set to unique values. Take particular note of that if columns are created in code, as in this instance, column names are not initialized automatically and they must be set manually.