AddRow

Ajoute une ligne à la DataTable.

Syntaxe

public void addRow(DataRow row) 

Paramètres

  • Row  : Datarow à ajouter à la classe DataTable

Résultats

Aucun

Exemple

DataTable dataTable = message.getDataTable(); 

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

dataTable.addRow(row);