NewRow

Crée un nouveau DataRow à la DataTable.

Syntaxe

public DataRow newRow() 

Paramètres

  • Aucun

Résultats

Renvoie le DataRow nouvellement créé.

Exemple

DataRow row = dataTable.newRow();
row.set("AddressLine1", "4203 Greenridge");

dataTable.addRow(row);