Skip to main content

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

TcxFilterValueList.Add(TcxFilterValueItemKind,Variant,string,Boolean) Method

In This Article

Adds a new filter item to the list.

#Declaration

Delphi
procedure Add(AKind: TcxFilterValueItemKind; const AValue: Variant; const ADisplayText: string; ANoSorting: Boolean); overload; virtual;

#Parameters

Name Type Description
AKind TcxFilterValueItemKind

The created filter item’s type.

AValue Variant

The created filter item’s value.

ADisplayText string

The created filter item’s display text.

ANoSorting Boolean

If True, the newly created filter item is appended to the list. If False, the item is inserted according to the current sort order. You can set the SortByDisplayText property to True to sort filter items by display text rather than values.

See Also