[ CCode ( cname = "gimp_prop_enum_radio_box_new" ) ]
[ Version ( since = "2.4" ) ]
public Widget prop_enum_radio_box_new (Object config, string property_name, int minimum, int maximum)
Creates a group of radio buttons which function to set and display the specified enum property.
The minimum and maximum arguments allow only a subset of the enum to be used. If the two arguments are equal (
e.g., 0, 0), then the full range of the enum will be used. If you want to assign a label to the group of radio buttons, use
prop_enum_radio_frame_new instead of this function.
| config |
Object to which property is attached. |
| property_name |
Name of enum property controlled by the radio buttons. |
| minimum |
Smallest value of enum to be included. |
| maximum |
Largest value of enum to be included. |
|
A Box containing the radio buttons. |