Skip to content

sections

Defines the visible state of named form sections. Assign a supported form-section state such as Hidden.

Declaration

1
 undefined $Form.sections

Remarks

Example

1
2
3
if ($Xml.EvaluateBoolean('SomeCondition')) {
$Form.sections['MySection'] = 'Hidden';     // set MySection to Hidden state.
}