Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
in reply to: lzs013

HI there, I'm building a very simple illogic rule to turn features on and off based on a parameter. in one case I need to flip one of the extrude features. I'm unsure how to insert your code into my rule can you provide some guidance?

 

If Vertical_Divider = "Full" Then

Feature.IsActive("vDivider Base") = True

Feature.IsActive("vDivider Top") = True

ElseIf Vertical_Divider = "None” Then

Feature.IsActive("vDivider Base") = True

(here I need to flip the vDivider Base asymmetric extrusion from 9,0.5 to 0.5,9)

Feature.IsActive("vDivider Top") = False

ElseIf Vertical_Divider = "Upper" Then

Feature.IsActive("vDivider Base") = False

Feature.IsActive("vDivider Top") = True

End If

 

Thanks for your help