Anonymous
396 Views, 1 Reply
01-05-2015
09:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
01-05-2015
09:45 PM
How to run ilogic rule in the parts
Hi to all
I need some assistance to run the ilogic rule . let me detail. i write the ilogic rule for each part in the assembly. i would like to run all ilogic rule of each part at the same time. is it possible to do in the assembly document which have those parts.
thank you
regards
rishbi
03-21-2016
12:29 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
03-21-2016
12:29 PM
Hi,
I think you are looking for this snippet if you need to run a rule in an Occurence
iLogicVb.RunRule("PartA:1", "ruleName")
If you have the rules in your Assembly then the most common way is to have the rules trigged by a Parameter. Docing this is quite simple. You need to add something in the rule that are changed by a parameter.. Like this..
Dim triggerParameter as Double = fxParameterName
After that you have the rule to Run everytime fxParameterName changes.
Regards
Rikard