|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
我在UG3.0中生成一个tabular note表格,但每次生成的对象都在第一层,无奈!最后打算在生成后把它移到工作层,下面是我的部分代码,烦请各位前辈给予帮助,应该怎么做,用到那些函数?
UF_CALL(UF_TABNOT_create_from_template(template_name,origin,&new_tabular_note_t));
if(new_tabular_note_t!=NULL_TAG)
{
UF_CALL(UF_LAYER_ask_work_layer(&work_layer));
UF_CALL(UF_OBJ_set_layer(new_tabular_note_t,work_layer-1));
}
//好象不能直接对new_tabular_note_t标识进行层操作,我做了一个测试,用UF_UI_select_with_class_dialog
//手选了一个tabular note。得到的TAG如下:
object count = 1
object tag = 6396
object_type :165,object_subtype :0
//是不是只有UF_tabular_note_section_subtype才能进行层操作
//那么用什么函数由new_tabular_note_t得到UF_tabular_note_section_subtype?
/* uf_object_types.h
#define UF_tabular_note_type 165
#define UF_tabular_note_section_subtype 0
#define UF_tabular_note_subtype 1
#define UF_tabular_note_row_subtype 2
#define UF_tabular_note_column_subtype 3
#define UF_parts_list_subtype 11
#define UF_parts_list_row_subtype 12
#define UF_parts_list_column_subtype 13
#define UF_spline_gear_table_subtype 21
#define UF_spline_gear_row_subtype 22
#define UF_spline_gear_column_subtype 23
*/ |
|