RADIOGROUP stack item
Defines a mutual exclusive set of option fields, in a stack-based layout.
Syntax
RADIOGROUP field-name [ , attribute-list ] ;
- field-name identifies the name of the screen record field.
- attribute-list defines the aspect and behavior of the form item.
Attributes
COLOR
, COLOR WHERE
,
COMMENT
, DEFAULT
, FONTPITCH
, HIDDEN
, INCLUDE
, ITEMS
, JUSTIFY
, KEY
, NOT NULL
, NOENTRY
, ORIENTATION
,
REQUIRED
,
SAMPLE
, SIZEPOLICY
, STYLE
, TAG
, TABINDEX
, TITLE
, UNSORTABLE
, UNSIZABLE
, UNHIDABLE
, UNMOVABLE
, VALIDATE
LIKE
.
Usage
Define the rendering and behavior of a radio group stack item, with an
EDIT
element inside a STACK
container.
For more details about this item type, see RADIOGROUP item type.
Example
RADIOGROUP player.level,
ITEMS=((1,"Beginner"),
(2,"Normal"),
(3,"Expert"));