IBindingList.AllowRemove Propiedad

Definición

Obtiene si se pueden quitar elementos de la lista mediante Remove(Object) o RemoveAt(Int32).

public:
 property bool AllowRemove { bool get(); };
public bool AllowRemove { get; }
member this.AllowRemove : bool
Public ReadOnly Property AllowRemove As Boolean

Valor de propiedad

true si se pueden quitar elementos de la lista; en caso contrario, false.

Comentarios

Si IList.IsFixedSize o IList.IsReadOnly es true, esta propiedad devuelve false.

Nota

Si AllowRemove devuelve false, IList.Remove y IList.RemoveAt inicia una NotSupportedExceptionexcepción .

Se aplica a