Gets or sets the string that separates the segments of the rows.
Syntax
| C# | |
|---|
string RowSeparator {get; set;} |
Property Value
Type: System.String
A string that represents the separator of the rows.
Remarks
Example
The following code example sets
RowSeparator property. After a new row adds into the table.
| C# | Copy Code |
|---|
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
// set rows separator
table.RowSeparator = ":";
// add row
table.AddRow("one:two:three:four");
// return table string
return table.ToString(); |
| PHP | Copy Code |
|---|
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
// set rows separator
$table->RowSeparator = ":";
// add row
$table->AddRow("one:two:three:four");
// return table string
return $table->ToString(); |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also