Learn how to change element properties in the Search Conditions section of the Code Editor for FlexiLayout elements
If required, you can change the properties of an element in the Search Conditions section of the Code Editor. Below is a list of elements that can be edited in the Search Conditions section.
The following checks whether elements Element1 and Element2 have been detected or not. If at least one of the elements have not been detected, the program is instructed to look for a vertical separator. Otherwise, the program should look for a horizontal separator.
Copy
Ask AI
if (Element1.IsNull == False) or (Element2.IsNull == False) thenMode: Vertical;elseMode: Horizontal;
Element properties are described in detail in the sections that follow.