Skip to main content

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

GridColumn.ColumnEditName Property

Gets or sets the name of the column’s editor.

Namespace: DevExpress.XtraGrid.Columns

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[Browsable(false)]
[XtraSerializableProperty]
public virtual string ColumnEditName { get; set; }

#Property Value

Type Description
String

A string value specifying editor name.

#Remarks

Use the ColumnEditName property to assign an editor from the grid’s internal or external repository to the column. The assigned editor is specified by its name. Note that if the editor with the specified name doesn’t exist in either of the repositories, assignment is not in effect.

Alternatively, you can use the GridColumn.ColumnEdit property to bind editors to columns. Refer to the Modify and Validate Cell Values help topic for details.

See Also