NX二次开发 UFUN删除一组成员 UF_GROUP_del_member_from_group
//NX8.0+VS2010
#include <uf.h>
#include <uf_ui.h>
#include <uf_obj.h>
#include <uf_modl.h>
#include <uf_curve.h>
#include <uf_assem.h>
#include <uf_part.h>
#include <UF_GROUP.h>
//对象从组中删除
bool DeleteObjectFromGroup(const tag_t group_tag, const tag_t object_tag)
{
if (NULL_TAG == group_tag
|| NULL_TAG == object_tag
|| UF_GROUP_del_member_from_group(object_tag, group_tag))
{
return false;
}
UF_DISP_add_item_to_display(group_tag);//更新显示
return true;
}