GridColumn.ColumnEditName Property
Gets or sets the name of the column’s editor.
Namespace: DevExpress.XtraGrid.Columns
Assembly: DevExpress.XtraGrid.v24.1.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