ZennoLab Assemblies Documentation
RowSeparator Property
See Also  Example Send Feedback
ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface : RowSeparator Property

Glossary Item Box

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

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.
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();
PHPCopy 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

© 2013 All Rights Reserved.