Syntax
set rescols [ABRDESIGN GET RESULTS]
Description
Query the list of existing check and design results
Argument |
Dimension |
Meaning |
GET |
KEYWORD |
Query data |
RESULTS |
KEYWORD |
Query the list of results |
Return
Return |
Dimension |
Meaning |
rescols |
LIST |
List of column names of results |
Scopes
All
Examples
# get list of columns and set number of results
set rescols [ABRDESIGN GET RESULTS]
set count [llength $rescols]
if { $count > 0 } {
# get content of all columns 0,1,...,count-1
foreach colname $rescols {
array unset column
array set column [ABRDESIGN $colname GET]
}
}
The list of check and design results is queried. The list is run through in a foreach loop and the data of the respective result column is queried.
|
(C) ALLPLAN GmbH |
Privacy policy |