: radio_row


Display a row of radio buttons.     DCL Cluster Tile


This cluster tile groups one or more radio buttons in a horizontal row. A radio_button tile must be placed either within this tile or within a radio_column cluster tile. Otherwise, the program does not know which radio buttons are related to each other.

NOTE A radio_row cluster can only contain radio buttons. Use the row cluster for other tiles.

Valid Attributes

: radio_row {

          alignment = position;

          children_alignment = position;

          children_fixed_height = flag;

          children_fixed_width = flag;

          fixed_height = flag;

          fixed_width = flag;

          height = number;

          label = "string";

          width = number;

}

Example

: radio_row {

          label = "3D Viewpoints";

          : radio_button {

                    action = "(leftview)";

                    key = "R11";

                    label = "Left View";

          }

          : radio_button {

                    action = "(riteview)";

                    key = "R22";

                    label = "Right View";

          }

}

NOTE The value attribute indicates which radio button is currently selected, via the value of "1":

     value = "1"

Related DCL Tiles

dialog

column

row

boxed_column

boxed_row

boxed_radio_column

boxed_radio_row

radio_column

radio_row

Tell me about...

Programming Overview of DCL (Dialog Control Language)

About Predefined Attributes