| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface : GetRow Method |
IEnumerable<string> GetRow( int row )
The zero-based index of the row.
Type: System.Collections.Generic.IEnumerable <String>
A collection that contains the strings from the specified row.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // get row string row = String.Join(":", table.GetRow(0)); // show message System.Windows.Forms.MessageBox.Show(row, "Row from table");
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // get row $row = String::Join(":", $table->GetRow(0)); // show message System\Windows\Forms\MessageBox::Show($row, "Row from table");
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.