ItemCollection.Filter Property

Definition

Gets or sets a callback used to determine if an item is suitable for inclusion in the view.

public:
 virtual property Predicate<System::Object ^> ^ Filter { Predicate<System::Object ^> ^ get(); void set(Predicate<System::Object ^> ^ value); };
public override Predicate<object> Filter { get; set; }
member this.Filter : Predicate<obj> with get, set
Public Overrides Property Filter As Predicate(Of Object)

Property Value

A method used to determine if an item is suitable for inclusion in the view.

Exceptions

Filtering is not supported.

Examples

For a related example, see How to: Filter Data in a View.

Remarks

Use the CanFilter property to test whether the current implementation supports filtering before assigning this property with a non-null value.

Applies to