char cue[] = "Select Objects";
char title[] = "选取......";
int response, count, i;
tag_p_t objects;
UF_UI_select_with_class_dialog(cue, title, UF_UI_SEL_SCOPE_WORK_PART,
NULL, NULL, [$response, &count, &objects)]
if (response == UF_UI_OK && count > 0)
{
//127 JAMBO 旋转车和2,3车位 START
for(i=0;i<count;i++){
UF_DISP_set_highlight(objects, 0);
}
}
UF_free(objects); |