From what I can tell in control definitions, there is none.
however, something like this will work assuming you are connected to the addin in vb.net
https://forums.autodesk.com/t5/inventor-customization/ilogic-api-documentation/td-p/6785772
iLogicAuto = iLogicVb.Automation 'MsgBox(iLogicAuto.iLogicRules.Count) For Each oRule In iLogicAuto.Rules(ThisApplication.ActiveEditDocument) MsgBox(oRule.Name) iLogicAuto.RunRuleDirect(oRule) Next
Thanks MechMachineMan, this only runs all the rules in the currently open document, not in its sub-components also, is it possible to adjust it to do that?
I'm guessing its ThisApplication.ActiveEditDocument that needs to be changed?