ZennoLab Assemblies Documentation
ITables Interface
Members  Example  See Also  Send Feedback
ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel.Collections Namespace : ITables Interface

Glossary Item Box

Represents a collection of tables that can be accessed by name.

Syntax

C# 
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".
C#Copy Code
// get table
IZennoTable table = project.Tables["MyTable"];
 
// set columns separator
table.ColSeparator = ":";
 
// add row
table.AddRow("1:2:3:4:5");
PHPCopy 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

© 2013 All Rights Reserved.