OpenSTAAD V8i
Puts a value into the cell of table at the specified row and column in a report.
Where:
Long variable containing the report number.
Long variable containing the table number.
Long variables containing the row and column number of the cell.
A variable of Data_Type (Integer, Long, Double, String) containing the value to be inserted in the cell.
'Get the application object --
'Set value to cell
RowNo = 2
ColNo = 5
Value = 5.25 'Declared as Double
objOpenSTAAD.Table.SetCellValue ReportNo, TableNo, Rowno, ColNo, Value