| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoPosterProjectModel Interface : Tables Property |
Type: ZennoLab.InterfacesLibrary.ProjectModel.Collections.ITables
A collection of tables.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // add a new row table.AddRow("simple text"); // get table by name "AnotherTable" and get row count int count = project.Tables["AnoterTable"].RowCount;
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // add a new row $table->AddRow("simple text"); // get table by name "AnotherTable" and get row count $count = $project->Tables->get_Item("AnoterTable")->RowCount;
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven