Message 1 of 11
Adding new mark feature to flat pattern with ilogic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I looking for help automating the new mark feature (Inventor 2023). Manually I can add it to the flat pattern, however with iLogic it appears that that "MarkFeatures" is missing in Flatpattern.Features (see image below).
The following works when adding the mark feature to the folded model:
Dim oMark As MarkFeature
oMark = ThisApplication.ActiveDocument.ComponentDefinition.Features.Add(oMarkDef)
My issue is when trying to add a mark feature to the flat pattern:
Dim oMark As MarkFeature
oMark = ThisApplication.ActiveDocument.ComponentDefinition.FlatPattern.Features.Add(oMarkDef)
With out "MarkFeatures" is there a way to add a Mark Features to the flat pattern features?