DataView.AllowDelete Propriedade
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define um valor que indica se é permitido excluir.
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
true
, se forem permitidas exclusões; caso contrário, false
.
- Atributos
O exemplo a seguir verifica a AllowDelete propriedade antes de excluir um DataRow de um 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
Comentários do .NET
O .NET é um projeto código aberto. Selecione um link para fornecer comentários: