IBindingList.AllowRemove Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur indiquant si vous pouvez supprimer des éléments de la liste à l'aide de Remove(Object) ou de RemoveAt(Int32).
public:
property bool AllowRemove { bool get(); };
public bool AllowRemove { get; }
member this.AllowRemove : bool
Public ReadOnly Property AllowRemove As Boolean
Valeur de propriété
true
si vous pouvez supprimer des éléments de la liste ; sinon, false
.
Remarques
Si IList.IsFixedSize ou IList.IsReadOnly est true
, cette propriété retourne false
.
Notes
Si AllowRemove retourne false
, IList.Remove et IList.RemoveAt lancez un NotSupportedException.