IBindingList::Find Method (PropertyDescriptor^, Object^)

 

Returns the index of the row that has the given PropertyDescriptor.

Namespace:   System.ComponentModel
Assembly:  System (in System.dll)

int Find(
	PropertyDescriptor^ property,
	Object^ key
)

Parameters

property
Type: System.ComponentModel::PropertyDescriptor^

The PropertyDescriptor to search on.

key
Type: System::Object^

The value of the property parameter to search for.

Return Value

Type: System::Int32

The index of the row that has the given PropertyDescriptor.

Exception Condition
NotSupportedException

This method will select the first row where the value of the property parameter equals the value of the key parameter.

This method is supported if SupportsSearching is true, otherwise this method throws a NotSupportedException.

The following code example demonstrates how to implement the Find method.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: