|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
求助!各位高手们!放在CAX无人回答,希望这里能有人解决这个问题.谢谢!
我用IGetCustomInfoNames去取零件图的所有自定义属性的名称,
API是status = ModelDoc->IGetCustomInfoNames( retval )
Output: (BSTR*) retval Array of the custom property names
Return: (HRESULT) status S_OK if successful
而我的程序:
......
swApp->IOpenDoc(FilePath,1,&retval);
BSTR * bstrCustomInfoName;
LONG NumParams =0;
retval->GetCustomInfoCount(&NumParams);//NumParams得到的是4
bstrCustomInfoName = new BSTR[NumParams];
retval->IGetCustomInfoNames(bstrCustomInfoName);
........
结果只有bstrCustomInfoName[0] 是取到了正确的值,剩下的就报错.为什么会取不到剩下的呢??????? |
|