购买与咨询 NX 二次开发视频教程,请联系微信号:13890821008 QQ号:85585969
函数结构:UF_DRAW_ask_auto_update( tag_t view_tag, logical * auto_update) 函数说明:
查询自动更新偏好的当前值 设置。
函数参数:
第1个参数为输入:
view_tag代表参数变量,tag_t 为输入参数类型,的剖视图标签
第2个参数为输出:
auto_update代表参数变量,logical * 为输出参数类型,TRUE=自动更新视图FALSE =不自动更新视图
UF_DRAW_ask_auto_update函数实例代码演示:
在下面的示例代码获取自动更新视图显示设置。
[quote]
#include <stdio.h>
#include <uf.h>
#include <uf_draw.h>
#include <uf_draw_types.h>
#include <uf_obj.h>
#include <uf_view.h>
void ufusr(char *param, int *retcod, int param_len)
{
char drawing_name [30] = "";
char view_name [30] = "";
char error_message[133] = "";
int ifail = 0;
tag_t view_tag = NULL_TAG
logical auto_update;
ifail = UF_initialize();
if (!ifail)
{
/* retrieve first drawing name. */
ifail = uc6492 (drawing_name);
}
if (!ifail)
{
/* get the name of the first view of the drawing. */
ifail = uc6499 (drawing_name, view_name);
}
if (!ifail)
{
/* Get the tag of the first view. */
ifail = UF_VIEW_ask_tag_of_view_name (view_name,&view_tag);
}
if (!ifail)
{
/* query the auto update status of this view. */
ifail = UF_DRAW_ask_auto_update (view_tag,&auto_update);
}
printf ("UF_DRAW_ask_auto_update sample ");
if (ifail)
{
ifail = UF_get_fail_message( ifail, error_message );
printf( "fails.\nError is: %s\n", error_message );
}
else
printf( "is successful.\n" );
UF_terminate();
}
[/quote]