mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
17 lines
475 B
Python
17 lines
475 B
Python
|
|
||
|
#<pycode(py_idaview)>
|
||
|
class IDAViewWrapper(CustomIDAMemo):
|
||
|
"""This class wraps access to native IDA views. See kernwin.hpp file"""
|
||
|
def __init__(self, title):
|
||
|
"""
|
||
|
Constructs the IDAViewWrapper object around the view
|
||
|
whose title is 'title'.
|
||
|
|
||
|
@param title: The title of the existing IDA view. E.g., 'IDA View-A'
|
||
|
"""
|
||
|
self._title = title
|
||
|
|
||
|
def Bind(self):
|
||
|
return _idaapi.pyidag_bind(self)
|
||
|
#</pycode(py_idaview)>
|