Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
Anonymous
314 Views, 1 Reply

Ilogic suppression with multivalue went wrong

I would like to suppress one of the bend feature of the part with multiselection. For example, Type A the bend will suppress; the bend feature active when Type B. However, my codes do not go well as since the bend is suppressed, the bend do not back to active status when Type A is selected. 

 

 

MultiValue.SetList ("Type", "A", "B")


' ***Type B***
Feature.IsActive("Type B") = False




Select Case Type
Case A 
	Feature.IsActive("Type B") = False


Case B 
	Feature.IsActive("Type B") = True

	
	End Select
	
iLogicVb.UpdateWhenDone = True
Parameter.UpdateAfterChange = True


 
 

ilogic suppress issue.png