Represents a collection of tables that can be accessed by name.
Syntax
| C# | |
|---|
public interface ITables |
Remarks
Example
The following example uses property
Tables of "project" for getting table with name
"MyTable".
| C# | Copy Code |
|---|
// get table
IZennoTable table = project.Tables["MyTable"];
// set columns separator
table.ColSeparator = ":";
// add row
table.AddRow("1:2:3:4:5"); |
| PHP | Copy Code |
|---|
// get table
$table = $project->Tables->get_Item("MyTable");
// set columns separator
$table->ColSeparator = ":";
// add row
$table->AddRow("1:2:3:4:5"); |
Requirements
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven
See Also