[This is preliminary documentation and is subject to change.]

When overriden in derived class removes the PropertyDescriptor from the indexes used for searching.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
protected abstract void RemoveIndex(
	PropertyDescriptor property
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Protected MustOverride Sub RemoveIndex ( _
	property As PropertyDescriptor _
)
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
protected:
virtual void RemoveIndex(
	PropertyDescriptor^ property
) abstract
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract RemoveIndex : 
        property:PropertyDescriptor -> unit 
JScript
protected abstract function RemoveIndex(
	property : PropertyDescriptor
)

Parameters

property
Type: System.ComponentModel..::..PropertyDescriptor
The PropertyDescriptor to remove from the indexes used for searching.

Implements

IBindingList..::..RemoveIndex(PropertyDescriptor)

See Also