ZennoLab Assemblies Documentation
ToString Method (IZennoTable)
Example 
Returns a string that represents the current table.
Syntax
string ToString()

Return Value

Type: System.String
A string that represents the current table.
Remarks
The ToString method for represents the rows and columns in string uses ColSeparator and RowSeparator properties.
Example
The following example converts an IZennoTable object using the default ToString method.
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
 
// convert table to string  
string str = project.ToString();
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
 
// convert table to string  
$str = $project->ToString();
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

IZennoTable Interface
IZennoTable Members
ITables Interface
RowSeparator Property
ColSeparator Property

Send Feedback