: radio_column
Display a vertical column of radio buttons. DCL Cluster Tile
This cluster tile groups together one or more radio buttons in a vertical column. A radio_button tile must be placed either within this tile or within a radio_row cluster tile. Otherwise, the program does not know which radio buttons are related to each other.
NOTE A radio_column cluster can only contain radio buttons. Use the column cluster for other tiles.
Valid Attributes
: radio_column {
alignment = position;
children_alignment = position;
children_fixed_height = flag;
children_fixed_width = flag;
fixed_height = flag;
fixed_width = flag;
height = number;
label = "string";
value = "string";
width = number;
}
Example
: radio_column {
label = "3D Viewpoints";
: radio_button {
action = "(frontview)";
key = "R1";
label = "Front View";
}
: radio_button {
action = "(topview)";
key = "R2";
label = "Top View";
}
}
NOTE The value attribute indicates which radio button is currently selected, via the value of "1":
value = "1"
Related DCL Tiles