C# SolidWorks 二次开发 API —读取零件相关属性
如何读取零件相关属性
这一篇看下如何读取属性:
直接上代码:
代码如下:
private void BtnGetPartData_Click(object sender, EventArgs e)
{
//请先打开零件: ..\TemplateModel\clamp1.sldprt
ISldWorks swApp = Utility.ConnectToSolidWorks();
if (swApp != null)
{
ModelDoc2 swModel = (ModelDoc2)swApp.ActiveDoc; //当前零件
//获取通用属性值
string project = swModel.GetCustomInfoValue("", "Project");
swModel.DeleteCustomInfo2("", "Qty"); //删除指定项
swModel.AddCustomInfo3("", "Qty", 30, "1"); //增加通用属性值
var ConfigNames = (string[])swModel.GetConfigurationNames(); //所有配置名称
Configuration swConfig = null;
foreach (var configName in ConfigNames)//遍历所有配置
{
swConfig = (Configuration)swModel.GetConfigurationByName(configName);
var manger = swModel.Extension.CustomPropertyManager[configName];
//删除当前配置中的属性
manger.Delete2("Code");
//增加一个属性到些配置
manger.Add3("Code", (int)swCustomInfoType_e.swCustomInfoText, "A-" + configName, (int)swCustomPropertyAddOption_e.swCustomPropertyReplaceValue);
//获取此配置中的Code属性
string tempCode = manger.Get("Code");
//获取此配置中的Description属性
var tempDesc = manger.Get("Description");
Debug.Print(" Name of configuration ---> " + configName + " Desc.=" + tempCode);
}
}
else
{
MessageBox.Show("Please open a part first.");
}
}
增加一个信息,读取summy里面的信息需要用
swModel.SummaryInfo((int)swSummInfoField_e.swSumInfoComment)
posted @
2019-09-10 16:47
painezeng 阅读(
286) 评论(
0)
编辑
收藏
举报