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

When overriden in derived class adds the PropertyDescriptor to 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 AddIndex(
	PropertyDescriptor property
)
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Protected MustOverride Sub AddIndex ( _
	property As PropertyDescriptor _
)
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
protected:
virtual void AddIndex(
	PropertyDescriptor^ property
) abstract
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract AddIndex : 
        property:PropertyDescriptor -> unit 
JScript
protected abstract function AddIndex(
	property : PropertyDescriptor
)

Parameters

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

Implements

IBindingList..::..AddIndex(PropertyDescriptor)

See Also