VALUEMAX attribute

The VALUEMAX attribute defines a upper limit of values displayed in widgets (such as progress bars).

Syntax

VALUEMAX = integer
  1. integer is an integer literal.

Usage

This attribute is typically used to define the upper limit in PROGRESSBAR, SPINEDIT and SLIDER fields.

This attribute is not used by the runtime system to validate the field. You must use the INCLUDE attribute to control value boundaries.

For more details, see for example the SLIDER item type.

Example

SLIDER s01 = FORMONLY.slider01,
                        VALUEMIN=0,
                        VALUEMAX=500;