| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface > GetCell Method : GetCell(String,Int32) Method |
Type: System.String
The name of column.
Type : System.Int32
The cell's row, zero-based index.
Type: System.String
The name of column.
Type : System.Int32
The cell's row, zero-based index.
Type: System.String
Value of the requested cell.
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // get cell value from column "A" in the zero line string cell = table.GetCell("A", 0);
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // get cell value from column "A" in the zero line $cell = $table->GetCell("A", 0);
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven