ZennoLab Assemblies Documentation
RowSeparator Property
Example 
Gets or sets the string that separates the segments of the rows.
Syntax
string RowSeparator {get; set;}

Property Value

Type: System.String
A string that represents the separator of the rows.
Remarks
The separator can be regular expression. In this case IsRowSeparatorRegEx property should be "true".
Example
The following code example sets RowSeparator property. After a new row adds into the table.
// 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();
// 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

Reference

IZennoTable Interface
IZennoTable Members
AddRow Method
ColSeparator Property
IsRowSeparatorRegEx Property

Send Feedback