| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface > AddRow Method : AddRow(String) Method |
Type: System.String
A string of items created through a specified separator. If this string has a special format, for example file of Excel, the values should be separated by semicolons.
Type: System.String
A string of items created through a specified separator. If this string has a special format, for example file of Excel, the values should be separated by semicolons.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // set row separator table.ColSeparator = ":"; // add row table.AddRow("one:two:three:four");
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // set row separator $table->ColSeparator = ":"; // add row $table->AddRow("one:two:three:four");
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.