Message 1 of 9
Suppress Flat Pattern Feature using iLogic
Not applicable
03-22-2016
04:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have two features within my flat pattern (Extrusion1 & Extrusion2) and I'd like to be able to suppress one or the other using iLogic.
I came across this link, which is quite useful when wanting to suppress or unsuppress features as a group:
However I just want to do this on an individual basis
For example :
If hinge = 0 Then
Feature.IsActive("Extrusion1") = True
Feature.IsActive("Extrusion2") = False
ElseIf hinge = 1 Then
Feature.IsActive("Extrusion1") = False
Feature.IsActive("Extrusion2") = True
End If
How would I change this to alter the flat pattern features instead?