Skip to main content
.NET 6.0+

IModelRegisteredPropertyEditors Interface

The PropertyEditors node represents a map of data types and Property Editors registered in an Application Model.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public interface IModelRegisteredPropertyEditors :
    IModelRegisteredViewItem,
    IModelNode,
    IModelList<IModelRegisteredPropertyEditor>,
    IList<IModelRegisteredPropertyEditor>,
    ICollection<IModelRegisteredPropertyEditor>,
    IEnumerable<IModelRegisteredPropertyEditor>,
    IEnumerable

Remarks

You can add a child to this node via the context menu, to specify a Property Editor for your data type.

This interface is a part of the Application Model infrastructure. You do not need to implement this interface in most cases.

The IModelRegisteredPropertyEditors node represents a list of the IModelRegisteredPropertyEditor nodes.

See Also