DataView.AllowNew Propriedade
Definição
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 as novas linhas podem ser adicionadas usando o método AddNew().
public:
property bool AllowNew { bool get(); void set(bool value); };
public bool AllowNew { get; set; }
[System.Data.DataSysDescription("DataViewAllowNewDescr")]
public bool AllowNew { get; set; }
member this.AllowNew : bool with get, set
[<System.Data.DataSysDescription("DataViewAllowNewDescr")>]
member this.AllowNew : bool with get, set
Public Property AllowNew As Boolean
Valor da propriedade
true
, se novas linhas puderem ser adicionadas; caso contrário, false
.
- Atributos
Exemplos
O exemplo a seguir define a AllowNew propriedade como true antes de adicionar uma nova linha com o AddNew método .
private void AddNew()
{
DataTable table = new DataTable();
// Not shown: code to populate DataTable.
DataView view = new DataView(table);
view.AllowNew = true;
DataRowView rowView = view.AddNew();
rowView["ProductName"] = "New Product Name";
}
Private Sub AddNew()
Dim table As New DataTable()
' Not shown: code to populate DataTable.
Dim view As New DataView(table)
view.AllowNew = True
Dim rowView As DataRowView
rowView = view.AddNew
rowView("ProductName") = "New Product Name"
End Sub
Aplica-se a
Confira também
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.