Gets a value indicating whether modifying property values is allowed on the view directly.

Namespace:  C1.LiveLinq.LiveViews
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public bool AllowEdit { get; }
Visual Basic
Public ReadOnly Property AllowEdit As Boolean
	Get

Implements

IBindingList..::..AllowEdit

Remarks

As any other update operation performed directly on the view (as opposed to on the base data collection on which that view depends, see AsUpdatable<(Of <<'(T>)>>)(View<(Of <<'(T>)>>))), it is allowed only if the view is not read-only (see IsReadOnly).

Although read-only properties of a view cannot be modified directly in the view, they still reflect up-to-date values of the source, so the difference is often not critical, you can always modify corresponding property in the source, that will automatically change the property in the view.

See Also