ExpandSection
This function will expand specified sections from current case’s form. Used only while opening form.
Syntax
ExpandSection("sectionName");
ExpandSection("sectionName","sectionName",...);
Function arguments
- sectionName – (String) The name of the section to be expanded, type „all” to expand all sections
Return value
This function returns Boolean.
This function always returns true
Examples
Example 1:
This will expand section named 'GeneralSection’ from current case’s form.
ExpandSection("GeneralSection");
Example 2:
This will expand sections named 'Section1′, 'Section3′ and 'Section4′ from current case’s form.
ExpandSection("Section1", "Section3", "Section4");
Example 3:
This will expand all sections from current case’s form.
ExpandSection("all");