Accessing Element Hypotheses
Element hypotheses can be accessed through the names of the elements. In both element description sections (Search Conditions and Hypotheses Evaluation) you can access the hypotheses for all elements located above the current element in the same hypothesis tree branch. Moreover, the formulated hypothesis for an element may be called in the Hypotheses Evaluation section for that element. Code from the Search Conditions section is executed separately for each hypothesis independently of the hypotheses which are located on other branches of the tree of hypotheses. This means that when the program executes the code of a particular section of an element description, it can access only one hypothesis for each superordinate element, namely the hypothesis which is located on the same branch. Element hypotheses and their properties are accessed in read-only mode.Element Naming
Hypotheses for a superordinate element are called by the full name of the element, for example:SearchObjects.Group1.Group2.FirstItem. When accessing one subelement of a group from another subelement, you need not specify the name of the group. For example, in the Advanced sections of the element SearchObjects.Group1.Group2.SecondItem, you can call the element SearchObjects.Group1.Group2.FirstItem in one of the following ways: SearchObjects.Group1.Group2.FirstItem, Group1.Group2.FirstItem, Group2.FirstItem, FirstItem.
The shortcut name will always refer to the most nested element.
Suppose we have the following tree of elements:
SearchElements.Group1.SecondItem and use the name FirstItem, you will call the SearchElements.Group1.FirstItem element, and not the SearchElements.FirstItem element.