NAME

radiobutton -
Mutually exclusive option widget

SYNOPSIS

ttk::radiobutton pathName ?options?

DESCRIPTION

radiobutton widgets are used in groups to show or change a set of mutually-exclusive options. Radiobuttons are linked to a Tcl variable, and have an associated value; when a radiobutton is clicked, it sets the variable to its associated value.

STANDARD OPTIONS

OPTIONS

NameDatabase nameDatabase class
-commandcommandCommand
 A Tcl script to evaluate whenever the widget is invoked.
-valueValueValue
 The value to store in the associated -variable when the widget is selected.
-variablevariableVariable
 The name of a global variable whose value is linked to the widget.

WIDGET COMMAND

In addition to the standard cget, configure, instate, and state commands, radiobuttons support the following additional widget commands:

NameDatabase nameDatabase class
  pathname invoke Sets the -variable to the -value, selects the widget, and evaluates the associated -command. Returns the result of the -command, or the empty string if no -command is specified.

SEE ALSO

widget(n), keynav(n), checkbutton(n)

KEYWORDS

widget, button, option