Skip to main content
Tag

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

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.v24.2.Core.dll

NuGet Package: 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