wpf-devexpress-dot-xpf-dot-grid-dot-columnbase-5287417b.md
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.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public BaseEditSettings ActualEditSettings { get; }
Public ReadOnly Property ActualEditSettings As BaseEditSettings
| Type | Description |
|---|---|
| BaseEditSettings |
A BaseEditSettings descendant that specifies the column’s editor.
|
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