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

Glossary Item Box

Returns a string that represents the current table.

Syntax

C# 
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.
C#Copy Code
// get table by name "MyTable"
IZennoTable table = project.Tables["MyTable"];
 
// convert table to string  
string str = project.ToString();
PHPCopy Code
// get table by name "MyTable"
$table = $project->Tables->get_Item("MyTable");
 
// convert table to string  
$str = $project->ToString();

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2013 All Rights Reserved.