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

When overriden in derived class gets whether you can update items in the list.

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

Return Value

true if you can update the items in the list; otherwise, false.

Implements

IBindingList..::..AllowEdit

See Also