Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello I need to delete last element of the pattern, I would be really grateful for help, is that possible to do?
Solved! Go to Solution.
Hello I need to delete last element of the pattern, I would be really grateful for help, is that possible to do?
Solved! Go to Solution.
Hi @tm21915
You won't be able to delete but you can suppress.
Example.
OccurrencePatternElement.Suppressed() As Boolean
Could you give a little more context as to the request? If you can let us know how you are doing it manually we can see how to do it by code.
Hello Thank you for reply. Attached I tried to explain the concept. I will try with suppressing elements. Are suppressed elements calculated in Bills of quantities? or just active are included?
I am making greenhouse structure. Different widths are defined by clients input, outer columns have different thickness from inner ones. This is just example it can have more different widths and different combinations.
My idea was using one pattern and then making element independent and using it for another pattern. However I have problem of overlapping. For some patterns first element was imported to the right place and used as starting point.
I dont know if there is some easier way because I feel like I m over complicating things, every suggestion that could solve this problem or simplify it would be really helpful.
Thank you in advance
If you make the pattern element Independent first, then you can delete the component that was held in that position, but the pattern element object itself will stay present in the model browser tree, with nothing in it. I think it is kept in memory though, because you can then make that element not independent again, and that component will reappear.
Wesley Crihfield
(Not an Autodesk Employee)
If you do not want something to be counted in the BOM, there are two main options, other than deleting that object. The first, and more proper way, is to set the ComponentOccurrence.BOMStructure to kReferenceBOMStructure. The second, and seemingly more popular option, is to suppress the object/component. Suppression unloads the object from Inventor's session memory, for performance purposes, but also excludes that item from the BOM.
Wesley Crihfield
(Not an Autodesk Employee)