IDAPython 9.0
|
Public Member Functions | |
__init__ (self, text="", flags=0, tabsize=0, width=50, swidth=50, hlp=None) | |
free (self) | |
![]() | |
get_tag (self) | |
is_input_field (self) | |
![]() | |
get_arg (self) | |
![]() | |
assign (self, other) | |
Copies the contents of 'other' to 'self'. | |
__set_flags__ (self, flags) | |
Sets the flags value. | |
__get_flags__ (self) | |
Returns the flags value. | |
__set_tabsize__ (self, tabsize) | |
Sets the tabsize value. | |
__get_tabsize__ (self) | |
Returns the tabsize value. | |
![]() | |
__del__ (self) | |
Delete the link upon object destruction (only if not static) | |
copy (self) | |
Returns a new copy of this class. | |
Public Attributes | |
arg = ctypes.pointer(ctypes.c_void_p.from_address(self.clink_ptr)) | |
![]() | |
tp = tp | |
width = width | |
swidth = swidth | |
hlp = hlp | |
is_relative_offset = is_relative_offset | |
id | |
![]() | |
int | id = 0 |
input_field_index = None | |
arg = None | |
form = None | |
bool | form_hasattr = False |
Additional Inherited Members | |
![]() | |
int | TXTF_AUTOINDENT = 0x0001 |
int | TXTF_ACCEPTTABS = 0x0002 |
int | TXTF_READONLY = 0x0004 |
int | TXTF_SELECTED = 0x0008 |
int | TXTF_MODIFIED = 0x0010 |
int | TXTF_FIXEDFONT = 0x0020 |
![]() | |
_create_clink (self) | |
_del_clink (self, lnk) | |
_get_clink_ptr (self) | |
![]() | |
_free (self) | |
![]() | |
value = property(__get_text, __set_text) | |
text = property(__get_text, __set_text) | |
flags = property(__get_flags__, __set_flags__) | |
tabsize = property(__get_tabsize__, __set_tabsize__) | |
![]() | |
clink = property(lambda self: self.__clink__) | |
clink_ptr = property(lambda self: self._get_clink_ptr()) | |
Multi line text control. This class inherits from textctrl_info_t. Thus the attributes are also inherited This control allows manipulating a multilinetext control
__init__ | ( | self, | |
text = "", | |||
flags = 0, | |||
tabsize = 0, | |||
width = 50, | |||
swidth = 50, | |||
hlp = None ) |
@param text: Initial text value @param flags: One of textctrl_info_t.TXTF_.... values @param tabsize: Tab size @param width: Display width @param swidth: String width
Reimplemented from Form.InputControl.
free | ( | self | ) |
Free the control
Reimplemented from Form.Control.
arg = ctypes.pointer(ctypes.c_void_p.from_address(self.clink_ptr)) |