UG NX二次开发(C#)- 查询part历史信息
Posted GimiGimmy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UG NX二次开发(C#)- 查询part历史信息相关的知识,希望对你有一定的参考价值。
在UG NX中对于部件可以直接看出其历史信息,如所示。
/// <summary>
/// 将模型历史信息全部输出到界面中
/// </summary>
/// <param name="part"></param>
public static void ExportPartHistoryInfoTheUI(Part part)
BasePart.HistoryEventInformation[] historyEventInformations = part.GetHistoryInformation();
theUFUi.OpenListingWindow();
int i = 1;
foreach (var he in historyEventInformations)
theUFUi.WriteListingWindow("===============历史信息\\t" + i++.ToString() + "\\t=================\\n");
theUFUi.WriteListingWindow("零件版本 : " + he.Version+"\\n");
theUFUi.WriteListingWindow("零件时间 : " + he.Time + "\\n");
theUFUi.WriteListingWindow("零件用户 : " + he.User + "\\n");
theUFUi.WriteListingWindow("零件program : " + he.Program + "\\n");
theUFUi.WriteListingWindow("零件机器 : " + he.Machine + "\\n");
以上是关于UG NX二次开发(C#)- 查询part历史信息的主要内容,如果未能解决你的问题,请参考以下文章
UG NX二次开发(C#)-建模-获得NX当前打开的所有part文件
UG NX二次开发(C#)-Part-根据模型名称获取part的对象