Skip to main content
.NET 8.0+

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

IInplaceEditSupport Interface

In This Article

Implemented by WinForms Property Editors that can be used by List Editors for in-place editing.

Namespace: DevExpress.ExpressApp.Win.Editors

Assembly: DevExpress.ExpressApp.Win.v24.2.dll

#Declaration

public interface IInplaceEditSupport

#Remarks

List Editors that support in-place editing can visualize cell values using various controls. For instance, a DateTime value can be displayed using a drop-down date picker. If a Property Editor corresponding to the type of a cell value does not implement the IInplaceEditSupport interface, the cell will be rendered as a simple label. Note that in this case, your Property Editor should be a DXPropertyEditor class inheritor.

The IInplaceEditSupport interface exposes a single IInplaceEditSupport.CreateRepositoryItem method. This method is called when an editable column of cells is created. The method must return a RepositoryItem corresponding to the editor control used by the Property Editor.

See Also