| ZennoLab.InterfacesLibrary Assembly > ZennoLab.InterfacesLibrary.ProjectModel Namespace > IZennoTable Interface > GetCell Method : GetCell(Int32,Int32) Method |
Type : System.Int32
The index of column.
Type : System.Int32
The cell's row, zero-based index.
Type : System.Int32
The index of column.
Type : System.Int32
The cell's row, zero-based index.
Type: System.String
Value of the requested cell.
| Exception | Description |
|---|---|
| IndexOutOfRangeException | The exception that is thrown when an attempt is made to access an element of an array with an index that is outside the bounds of the array. |
// get table by name "MyTable" IZennoTable table = project.Tables["MyTable"]; // get cell value from column "0" in the zero line string cell = table.GetCell(0, 0);
// get table by name "MyTable" $table = $project->Tables->get_Item("MyTable"); // get cell value from column "0" in the zero line $cell = $table->GetCell(0, 0);
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.