ListControl.FilterItemOnProperty Method
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.
Returns the current value of the ListControl item, if the item is a property of an instance of the ListControl class.
Overloads
FilterItemOnProperty(Object, String) |
Returns the current value of the ListControl item, if it is a property of an object given the item and the property name. |
FilterItemOnProperty(Object) |
Retrieves the current value of the ListControl item, if it is a property of an object, given the item. |
FilterItemOnProperty(Object, String)
- Source:
- ListControl.cs
- Source:
- ListControl.cs
- Source:
- ListControl.cs
Returns the current value of the ListControl item, if it is a property of an object given the item and the property name.
protected:
System::Object ^ FilterItemOnProperty(System::Object ^ item, System::String ^ field);
protected object FilterItemOnProperty (object item, string field);
protected object? FilterItemOnProperty (object? item, string? field);
member this.FilterItemOnProperty : obj * string -> obj
Protected Function FilterItemOnProperty (item As Object, field As String) As Object
Parameters
- item
- Object
The object the ListControl item is bound to.
- field
- String
The property name of the item the ListControl is bound to.
Returns
The filtered object.
Applies to
FilterItemOnProperty(Object)
- Source:
- ListControl.cs
- Source:
- ListControl.cs
- Source:
- ListControl.cs
Retrieves the current value of the ListControl item, if it is a property of an object, given the item.
protected:
System::Object ^ FilterItemOnProperty(System::Object ^ item);
protected object FilterItemOnProperty (object item);
protected object? FilterItemOnProperty (object? item);
member this.FilterItemOnProperty : obj -> obj
Protected Function FilterItemOnProperty (item As Object) As Object
Parameters
- item
- Object
The object the ListControl item is bound to.
Returns
The filtered object.