TEXT attribute

The TEXT attribute defines the label associated with a form item.

Syntax

TEXT = [%]"string"
  1. string defines the label to be associated with the form item.
  2. string can be a localized string.

Usage

The TEXT attribute is typically used to define the label of form items such as CHECKBOX.

Consider using localized strings with the %"string-id" syntax, if you plan to internationalize your application.

CHECKBOX cb01 = FORMONLY.checkbox01, 
                TEXT="OK",
                VALUECHECKED='y',
                VALUEUNCHECKED='n';