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

Class StringInput

     object --+        
              |        
   Form.Control --+    
                  |    
  Form.InputControl --+
                      |
         object --+   |
                  |   |
Form.StringArgument --+
                      |
                     Form.StringInput
Known Subclasses:

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 help(type(x)) for signature

Inherited from InputControl: get_tag, is_input_field

Inherited from Control: free, get_arg

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

Properties

Inherited from StringArgument: value

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 help(type(x)) 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__