OpenSTAAD V8i

Table.ResizeTable

Resizes a table specified by TableNo in a report specified by ReportNo.

VB Syntax

Table.ResizeTable ReportNo, TableNo, NumRows, NumCols

Where:

ReportNo

Long variable containing the report number whose table will be resized.

TableNo

Long variable containing the table number to be resized.

NumRows, NumCols

Long variables providing the new number of rows and columns of the table.

VB Example

'Get the application object --
'Resize Table
NumRows = 10
NumCols = 5
objOpenSTAAD.Table.ResizeTable ReportNo, TableNo, NumRows, NumCols