ZennoLab Assemblies Documentation
ITables Interface
Members  Example 
Represents a collection of tables that can be accessed by name.
Object Model
ITables Interface
Syntax
public interface ITables 
Remarks
This interface can be used in action OwnCode (C# or PHP) of ProjectMaker.
Example
The following example uses property Tables of "project" for getting table with name "MyTable".
// get table
IZennoTable table = project.Tables["MyTable"];
 
// set columns separator
table.ColSeparator = ":";
 
// add row
table.AddRow("1:2:3:4:5");
// 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: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

ITables Members
ZennoLab.InterfacesLibrary.ProjectModel.Collections Namespace
IZennoPosterProjectModel.Tables Property

Send Feedback