Skip to main content
A newer version of this page is available. .
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.v20.2.Core.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

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. The default value of this property is 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.

Refer to the Assign Editors to Cells topic for more information.

See Also