系统相关
首页 > 系统相关> > 【NX二次开发】获取、设置控件值时,注意释放内存

【NX二次开发】获取、设置控件值时,注意释放内存

作者:互联网

 

int iEnumType = this->enumType->SetShow(true);
int iEnumType = this->enumType->GetProperties()->SetLogical("Show",true);

一种是8.5以上才能用的,一种是通用

第二种写法,有问题,可以用,但是没有释放内存,下面是正确用法

PropertyList *propList = this->enumType->GetProperties();
int iEnumType = propList->GetEnum("Value");
delete propList;
propList = NULL;

 

标签:值时,控件,int,iEnumType,GetProperties,propList,二次开发,true,enumType
来源: https://www.cnblogs.com/KMould/p/16481362.html