Property Value
Type: System.StringA string that represents the separator of the columns.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // set rows separator table.ColSeparator = ":"; // add row table.AddRow("one:two:three:four"); // return columns count return table.ColCount;
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // set rows separator $table->ColSeparator = ":"; // add row $table->AddRow("one:two:three:four"); // return columns count return $table->ColCount;
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.