DataView.AllowDelete Propriété

Définition

Obtient ou définit une valeur qui indique si les suppressions sont autorisées.

public:
 property bool AllowDelete { bool get(); void set(bool value); };
public bool AllowDelete { get; set; }
[System.Data.DataSysDescription("DataViewAllowDeleteDescr")]
public bool AllowDelete { get; set; }
member this.AllowDelete : bool with get, set
[<System.Data.DataSysDescription("DataViewAllowDeleteDescr")>]
member this.AllowDelete : bool with get, set
Public Property AllowDelete As Boolean

Valeur de propriété

true si les suppressions sont autorisées ; sinon, false.

Attributs

Exemples

L’exemple suivant vérifie la AllowDelete propriété avant de supprimer un DataRow d’un DataView.

private void CheckAllowDelete(DataRow rowToDelete)
{
    DataView view = new DataView(DataSet1.Tables["Suppliers"]);
    if (view.AllowDelete)
        rowToDelete.Delete();
}
Private Sub CheckAllowDelete(rowToDelete As DataRow)
    Dim view As New DataView(DataSet1.Tables("Suppliers"))
    If view.AllowDelete Then
    rowToDelete.Delete()
    End If
End Sub

S’applique à

Voir aussi