@Viktor.Lukjanow
I couldnt find anything on doing this with ilogic. However, you could create a rule that fills out the form with a series of tabs & arrow keys to mimic user input.
Ex.
ThisApplication.CommandManager.ControlDefinitions("AppCrossSectionAnalysisCmd").Execute
System.Windows.Forms.SendKeys.SendWait("{LEFT}")
System.Windows.Forms.SendKeys.SendWait("{TAB}" & "{TAB}" & "{TAB}" & "{TAB}")
System.Windows.Forms.SendKeys.SendWait("{UP}")
System.Windows.Forms.SendKeys.SendWait("{TAB}" & "{TAB}")
System.Windows.Forms.SendKeys.SendWait("1 in")
System.Windows.Forms.SendKeys.SendWait("{TAB}")
System.Windows.Forms.SendKeys.SendWait("2 in") If you save this rule as an external rule you can add it to the "Inspect" panel next to the default Section command.