Module ida_kernwin :: Class Form :: Class RadGroupControl
[frames] | no frames]

Class RadGroupControl

          object --+        
                   |        
        Form.Control --+    
                       |    
          object --+   |    
                   |   |    
Form.NumericArgument --+    
                       |    
       Form.GroupControl --+
                           |
                          Form.RadGroupControl

Radiobox group control class. It holds a set of radiobox controls

Instance Methods
 
__init__(self, children_names, value=0, secondary=False)
Creates a radiogroup control.

Inherited from GroupControl: get_tag, next_child_pos

Inherited from Control: free, get_arg, is_input_field

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  ItemClass = None

Inherited from NumericArgument: DefI64

Properties

Inherited from NumericArgument: value

Inherited from object: __class__

Method Details

__init__(self, children_names, value=0, secondary=False)
(Constructor)

 

Creates a radiogroup control.

Parameters:
  • children_names - A tuple containing group item names
  • value - Initial selected radio item
  • secondory - Allows rendering one the same line as the previous group control. Use this if you have another group control on the same line.
Overrides: object.__init__