gtkRadioActionGetGroup {RGtk2}R Documentation

gtkRadioActionGetGroup

Description

Returns the list representing the radio group for this object. Note that the returned list is only valid until the next change to the group.

Usage

gtkRadioActionGetGroup(object)

Arguments

object [GtkRadioAction] the action object

Details

A common way to set up a group of radio group is the following:

   while (more_actions)
    {
       action <- gtkRadioAction(...)
       
       action$setGroup(group)
       group = action$getGroup()
    }

Since 2.4

Value

[list] the list representing the radio group for this object

Author(s)

Derived by RGtkGen from GTK+ documentation


[Package RGtk2 version 2.12.5-3 Index]