Skip to main content
.NET 6.0+

ListViewFilterAttribute(String, String) Constructor

Creates an instance of the ListViewFilterAttribute class and initializes its properties.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public ListViewFilterAttribute(
    string id,
    string criteria
)

Parameters

Name Type Description
id String

A string value that represents the ID of the filter to be created. This parameter value is assigned to the ListViewFilterAttribute.Id property.

criteria String

A string value that represents criteria for filtering the current List View. This parameter value is assigned to the ListViewFilterAttribute.Criteria property.

Remarks

If you apply several ListViewFilter attributes, you can specify an index for each of them. This allows you to locate the Filter Action’s items in the required order.

The following code demonstrate how to pass an index:

[ListViewFilter("Filter2","",Index=2)]
public class Contact : Person {
   //...
}

The following code snippets (auto-collected from DevExpress Examples) contain references to the ListViewFilterAttribute(String, String) 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.

See Also