| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface > AddRow Method : AddRow(IEnumerable<String>) Method |
Type: IEnumerable<string>
The values of the row.
void AddRow( IEnumerable<string> values )
Type: IEnumerable<string>
The values of the row.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // add row table.AddRow(new [] { "one", "two", "three", "four" });
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // add row $table->AddRow(array("one", "two", "three", "four"));
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.