Module pywraps :: Class Form :: Class Control
[frames] | no frames]

Class Control

object --+
         |
        Form.Control

Instance Methods
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
get_tag(self)
Control tag character.
 
get_arg(self)
Control returns the parameter to be pushed on the stack (Of AskUsingForm())
 
free(self)
Free the control

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

Instance Variables
  id
Automatically assigned control ID
  arg
Control argument value.
  form
Reference to the parent form.
Properties

Inherited from object: __class__

Method Details

__init__(self)
(Constructor)

 

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

Overrides: object.__init__
(inherited documentation)

get_tag(self)

 

Control tag character. One of Form.FT_XXXX. The form class will expand the {} notation and replace them with the tags


Instance Variable Details

arg

Control argument value. This could be one element or a list/tuple (for multiple args per control)

form

Reference to the parent form. It is filled by Form.Add()