issues with hm_getelemcheckbounds api
Altair Forum User
Altair Employee
Answers
-
Hello @rk2
This is not defect, 'length' will return the Minimum length.
You can find the longest length element with following commands.
*createmark elems 1 displayed;
set length [hm_getvalue elems mark=1 dataname=longestside];
set longval [lindex [lsort -decreasing $length] 0];
set longid [lindex [hm_getvalue elems mark=1 dataname=id] [lsearch $length $longval]];
tk_messageBox -message 'Longest element ID = ${longid}\nLongest element value = ${longval}';Thanks,
Imoto
0