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

When overriden in derived class gets whether you can remove items from the list, using Remove(Object) or RemoveAt(Int32).

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 bool AllowRemove { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Protected MustOverride ReadOnly Property AllowRemove As Boolean
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
protected:
virtual property bool AllowRemove {
	bool get () abstract;
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract AllowRemove : bool
JScript
abstract function get AllowRemove () : boolean

Return Value

true if you can remove items from the list; otherwise, false.

Implements

IBindingList..::..AllowRemove

See Also