Module idaapi :: Class Form :: Class StringInput
[frames] | no frames]

Class StringInput

     object --+        
              |        
   Form.Control --+    
                  |    
  Form.InputControl --+
                      |
         object --+   |
                  |   |
Form.StringArgument --+
                      |
                     Form.StringInput

Base string input control class. This class also constructs a StringArgument

Instance Methods
 
__init__(self, tp=None, width=1024, swidth=40, hlp=None, value=None, size=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Inherited from InputControl: get_tag

Inherited from Control: free, get_arg

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

Class Variables

Inherited from StringArgument: value

Instance Variables

Inherited from Control: arg, form, id

Properties

Inherited from object: __class__

Method Details

__init__(self, tp=None, width=1024, swidth=40, hlp=None, value=None, size=None)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Parameters:
  • width - String size. But in some cases it has special meaning. For example in FileInput control. If you want to define the string buffer size then pass the 'size' argument
  • swidth - Control width
  • value - Initial value
  • size - String size
Overrides: object.__init__