DataView.AllowDelete Proprietà

Definizione

Ottiene o imposta un valore che indica se sono consentite le eliminazioni.

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

Valore della proprietà

true se le eliminazioni sono consentite; in caso contrario, false.

Attributi

Esempio

Nell'esempio seguente viene controllata la AllowDelete proprietà prima di eliminare un DataRow oggetto da un oggetto 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

Si applica a

Vedi anche