Select component collector by surfaces
Roshan Shiveshwar
Altair Community Member
Hi ,
Is there any direct way to select component collectors ' by surfaces' ?
Thanks,
Roshan
0
Answers
-
by surface does support comps i think
u can try this:
set col_id []
*createmarkpanel surfs 1 'Select Surfaces'
or
*createmark surfs 1 displayed
set surfs_id [hm_getmark surfs 1]
foreach id $surfs {
lappend col_id [hm_getvalue surfs id = $id dataname = collector]
}
puts $col_id
0 -
Thanks Pandurang.
This is really helpful!!
BTW , is there a place where all the datanames are listed?
0 -
Altair Forum User said:
Thanks Pandurang.
This is really helpful!!
BTW , is there a place where all the datanames are listed?
yes
Go to HW Ref Guide..you will find 'Data names' listed
0