09-19-2022
10:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
09-19-2022
10:25 PM
Thank you for your response JelteDeJong.
Inventor.ApprenticeServerComponent apprentice = new Inventor.ApprenticeServerComponent();
Inventor.ApprenticeServerDocument apprenticeDoc = apprentice.Open(Filename);
Inventor.PropertySet summaryPropSet = apprenticeDoc.PropertySets["Inventor Document Summary Information"];
Inventor.Property companyProp = summaryPropSet["Company"];
companyProp.Value = "www.hjalte.nl";
apprenticeDoc.PropertySets.FlushToFile();
apprenticeDoc.Close();
The above code it is working fine for Console Application(C#) or Windows Application(C#).
But in class library (dll) it is not working.
Can you please let me know is there any solution is there to execute in class library (dll).
Thanks & Regards,
Vijay