tblITableEditor GetData
Returns value of a table cell.
Syntax
tblITableEditor_handle GetData rowindex columnindex
Application
HyperWorks Tcl Query
Description
Returns the value of a table cell.
Inputs
- rowindex
- Index of the row where the cell is located.
- columnindex
- Index of the column where the cell is located.
Example
Get the data of the cell in column C, row 2 and save it in a variable:
set t [hw::GetT]
set activetableHandle [hwi GetActiveClientHandle ch$t]
set valueCellC2 [$activetableHandle GetData 2 3]
Errors
Success (0) or an error message is returned.