PropertyFilter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of the PropertyFilter class.
Overloads
PropertyFilter(IEnumerable<PropertyFilterPredicate>) |
Creates a new instance of the PropertyFilter class that includes an enumeration of filtering strings, called predicates, that can be compared against a target property name until a match is found. |
PropertyFilter(String) |
Creates a new instance of the PropertyFilter class that includes a String that contains a space-delimited sequence of filtering phrases, called predicates, that can be compared against a target property name until a match is found. |
PropertyFilter(IEnumerable<PropertyFilterPredicate>)
Creates a new instance of the PropertyFilter class that includes an enumeration of filtering strings, called predicates, that can be compared against a target property name until a match is found.
public:
PropertyFilter(System::Collections::Generic::IEnumerable<System::Activities::Presentation::PropertyEditing::PropertyFilterPredicate ^> ^ predicates);
public PropertyFilter (System.Collections.Generic.IEnumerable<System.Activities.Presentation.PropertyEditing.PropertyFilterPredicate> predicates);
new System.Activities.Presentation.PropertyEditing.PropertyFilter : seq<System.Activities.Presentation.PropertyEditing.PropertyFilterPredicate> -> System.Activities.Presentation.PropertyEditing.PropertyFilter
Public Sub New (predicates As IEnumerable(Of PropertyFilterPredicate))
Parameters
- predicates
- IEnumerable<PropertyFilterPredicate>
An IEnumerable list of predicates, or strings used for matching.
Applies to
PropertyFilter(String)
Creates a new instance of the PropertyFilter class that includes a String that contains a space-delimited sequence of filtering phrases, called predicates, that can be compared against a target property name until a match is found.
public:
PropertyFilter(System::String ^ filterText);
public PropertyFilter (string filterText);
new System.Activities.Presentation.PropertyEditing.PropertyFilter : string -> System.Activities.Presentation.PropertyEditing.PropertyFilter
Public Sub New (filterText As String)