Skip to main content
Tag

ColumnBase.ActualEditSettings Property

Gets the actual edit settings used by the grid to create an inplace editor for the column. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v14.2.Core.dll

#Declaration

public BaseEditSettings ActualEditSettings { get; }

#Property Value

Type Description
BaseEditSettings

A BaseEditSettings descendant that specifies the column's editor.

#Remarks

The column's editor is specified by the ColumnBase.EditSettings property. By default, this property isn't specified (it is set to null) and the grid automatically creates editors for all columns based on the type of their values. For instance, if a column is bound to a field that contains DateTime values, the grid creates a date editor for this column. If a column is bound to a field that contains numeric data, the numeric editor is used. Otherwise, the text editor is used. Use the ActualEditSettings property to obtain the column's actual editor.

To learn more, see Inplace Editors Overview and Assigning Editors to Columns.

See Also