10-27-2016
03:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
10-27-2016
03:16 AM
Hi Limin,
I checked for the authoring property in your part. It seems to be already removed.
However, there is anadditional info in the attribute set of part’s component definition called "com.autodesk.inventor.HarnessProperties which you can try to delete.
Please execute the code below in a vba editor for this
Sub main()
Dim Doc As PartDocument
Set Doc = ThisApplication.ActiveDocument
Dim attrset As AttributeSet
Set attrset = Doc.ComponentDefinition.AttributeSets.Item("com.autodesk.inventor.HarnessProperties")
attrset.Delete
End Sub
Please let me know if this helps.
Regards,
Sajith

Sajith Subramanian
Autodesk Developer Network