INITIALIZER attribute

The INITIALIZER attribute allows you to specify an initialization function that will be automatically called by the runtime system to set up the form item.

Syntax

INITIALIZER = function
  1. function is an identifier defining the program function to be called.

Usage

The initialization function must exist in the program using the form file and must be defined with a ui.ComboBox parameter.

The initialization function name is converted to lowercase by fglform.

Tip: Consider defining the initialization function name in lowercase letters. The language syntax allows case-insensitive functions names, but to avoid mistakes, it is recommended to use a common naming convention with lowercase letters.