Parameters
- row
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.
If rows separator wasn't set then will be using separator by default.
The following code using IZennoTable Interface for adding row. Before call of AddRow method, set rows separator via RowSeparator property.
| C# | Copy Code |
|---|---|
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // set row separator table.ColSeparator = ":"; // add row table.AddRow("one:two:three:four"); | |
| PHP | Copy Code |
|---|---|
// 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: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven