Skip to main content
.NET 6.0+

PropertyEditorAttribute(Type, String, Boolean) Constructor

Creates an instance of the PropertyEditorAttribute class, initializing the PropertyEditorAttribute.PropertyType and PropertyEditorAttribute.IsDefaultEditor properties.

Namespace: DevExpress.ExpressApp.Editors

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public PropertyEditorAttribute(
    Type propertyType,
    string alias,
    bool isDefaultEditor
)

Parameters

Name Type Description
propertyType Type

A type of the property for which the target Property Editor is designed.

alias String

A string alias to be associated with the Property Editor (see EditorAliasAttribute). If the propertyType parameter value is not a Object type, do not use built-in editor aliases. If you need to register a custom editor for a built-in alias, use the solution from the ModuleBase topic.

isDefaultEditor Boolean

true if the target Property Editor should be used for the properties of the specified type; otherwise, false.

See Also