TIMEEDIT item definition

Defines attributes for a line-edit with a clock widget to pick a time.

Syntax

TIMEEDIT item-tag = field-name [ , attribute-list ] ;
  1. item-tag is an identifier that defines the name of the item tag in the layout section.
  2. field-name identifies the name of the screen record field.
  3. attribute-list defines the aspect and behavior of the form item.

Form attributes

AUTONEXT, COLOR, COLOR WHERE, COMMENT, DEFAULT, FONTPITCH, HIDDEN, IMAGECOLUMN, INCLUDE, JUSTIFY, NOT NULL, NOENTRY, PLACEHOLDER, REQUIRED, REVERSE, SAMPLE, STRETCH, STRETCHMAX, STRETCHMIN, STYLE, TABINDEX, TAG, TITLE, UNSORTABLE, UNSIZABLE, UNHIDABLE, UNMOVABLE, VALIDATE LIKE.

Style attributes

Common: backgroundColor, border, fontFamily, fontSize, fontStyle, fontWeight, textColor, textDecoration.

Class-specific: none.

Usage

Define the rendering and behavior of a time edit item tag, with a TIMEEDIT element in the ATTRIBUTES section.

For more details about this item type, see TIMEEDIT item type.

Example

LAYOUT
GRID
{
[f1         ]
 ...

}
END
END

ATTRIBUTES
TIMEEDIT f1 = package.arrtime;
...