ITables

Assembly: ZennoLab.InterfacesLibrary
Full name: ZennoLab.InterfacesLibrary.ProjectModel.Collections.ITables


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

This interface can be used in action OwnCode (C# or PHP) of ProjectMaker.

Properties

Item

Property

Get the table by the specified name.

This property uses only for getting necessary table.

Parameters

ПараметрОписание
tableNameThe name of table.

Example

// get table
            IZennoTable table = project.Tables["MyTable"];

Example2

// get table
            $table = $project->Tables->get_Item("MyTable");