: boxed_radio_column
Place a rectangle around a column of radio buttons, with an optional title. DCL Cluster Tile
This cluster tile places a border around a column of radio buttons. When the label attribute is missing or a null string ("") is used, the border appears with no title.
NOTE
- For a column of radio buttons without a border or title, use the radio_column cluster.
- To place a border around a column of other tiles, use the boxed_column cluster.
Valid Attributes
: boxed _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
: boxed_radio_column {
label="Edit Object;
width=40;
: radio_button {
action = "(trimlsp)";
key = "R3";
label = "Trim";
}
: radio_button {
action = "(extendlsp)";
key = "R4";
label = "Extend";
}
}
NOTE The value attribute indicates which radio button is currently selected by default, via the value of "1":
value = "1"
Related DCL Tiles