| IDAPython 9.0
    | 
 
  
| Public Member Functions | |
| __init__ (self, children_names, value=0, secondary=False) | |
|  Public Member Functions inherited from Form.GroupControl | |
| next_child_pos (self) | |
| get_tag (self) | |
|  Public Member Functions inherited from Form.Control | |
| get_arg (self) | |
| free (self) | |
| is_input_field (self) | |
|  Public Member Functions inherited from Form.NumericArgument | |
| Static Public Attributes | |
| ItemClass = None | |
|  Static Public Attributes inherited from Form.NumericArgument | |
| bool | DefI64 = False | 
| Additional Inherited Members | |
|  Public Attributes inherited from Form.GroupControl | |
| children_names = children_names | |
| tag = tag | |
| int | childpos = 0 | 
|  Public Attributes inherited from Form.Control | |
| int | id = 0 | 
| input_field_index = None | |
| arg = None | |
| form = None | |
| bool | form_hasattr = False | 
|  Public Attributes inherited from Form.NumericArgument | |
| arg = ctypes.pointer(cls(value)) | |
|  Protected Member Functions inherited from Form.GroupControl | |
| _reset (self) | |
|  Properties inherited from Form.NumericArgument | |
| value = property(lambda self: self.arg.contents.value, __set_value) | |
Radiobox group control class. It holds a set of radiobox controls
| __init__ | ( | self, | |
| children_names, | |||
| value = 0, | |||
| secondary = False ) | 
Creates a radiogroup control.
@param children_names: A tuple containing group item names
@param value: Initial selected radio item
@param secondory: Allows rendering one the same line as the previous group control.
                  Use this if you have another group control on the same line.
 
Reimplemented from Form.GroupControl.
| 
 | static |