ListEditorAttribute(Type, Boolean) Constructor
Initializes a new instance of the ListEditorAttribute.
Namespace: DevExpress.ExpressApp.Editors
Assembly: DevExpress.ExpressApp.v23.1.dll
NuGet Package: DevExpress.ExpressApp
Declaration
Parameters
Name | Type | Description |
---|---|---|
listElementType | Type | A Type object specifying the type of objects for which the target List Editor is designed. This parameter value is used to initialize the ListEditorAttribute.ListElementType property. |
isDefault | Boolean | true if the target List Editor should be used for the objects of the specified type by default; otherwise, false. This parameter value is used to initialize the ListEditorAttribute.IsDefault property. |
Remarks
Use this constructor when you want your List Editor to be automatically set for objects of a particular data type. In this instance, pass the required object type as the first attribute parameter; and true as the second attribute parameter. Note that your List Editor might not be set automatically if there is another List Editor with the same parameters.
If you implement an extra List Editor for a particular object type, but you do not want it to be automatically set for objects of this data type, pass the required object type as the first attribute parameter; and false as a the second attribute parameter. In this instance, your List Editor will be added to the list of editors available for List Views of the specified data type.
Related GitHub Examples
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ListEditorAttribute(Type, Boolean) constructor.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.