赞
踩
在页面空白处放置一个注释,注释可以在界面中定义。
//创建注释
int UserNoteCreate(ProDrawing drawing,ProLine notestr,ProVector pos,ProModelitem modelitem,ProSelection* view_sel)
{
ProError err;
ProDtlnotetext text;
ProDtlnoteline line;
ProDtlnotedata ndata;
ProView view;
ProDtlattach attach;
ProDtlnote note;
ProSelection csys_sel;
int pid;
err=ProWindowCurrentGet(&pid);
//为注释文本数据分配内存
err=ProDtlnotetextAlloc(&text);
if (err!=PRO_TK_NO_ERROR)
return err;
//将注释文本存入text中
err=ProDtlnotetextStringSet(text,notestr);
if (err!=PRO_TK_NO_ERROR)
return err;
//Allocate memory for the note text line data. User must free memory by ProDtlnotelineFree()
err=ProDtlnotelineAlloc(&line);
if (err!=PRO_TK_NO_ERROR)
return err
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。