True/False parameter create by iLogic

True/False parameter create by iLogic

hulemartin92
Participant Participant
688 Views
2 Replies
Message 1 of 3

True/False parameter create by iLogic

hulemartin92
Participant
Participant

Hello all,

 

Is there some possiblity how I can create True/False fx parameters by iLogic rule?

 

Thank you!

0 Likes
Accepted solutions (1)
689 Views
2 Replies
Replies (2)
Message 2 of 3

nedeljko.sovljanski
Advocate
Advocate
Accepted solution

Hi @hulemartin92 

Dim doc As PartDocument
doc = ThisApplication.ActiveDocument
	
Dim params As Parameters
params = doc.ComponentDefinition.Parameters
	
Call params.UserParameters.AddByValue("MyParam", True, kBooleanUnits)
Message 3 of 3

hulemartin92
Participant
Participant

Thank you so much!