*************** wx.ProcessEvent *************** Inheritance diagram for `wx.ProcessEvent`: | .. inheritance-diagram:: wx.ProcessEvent | Description =========== A process event is sent when a process is terminated. .. seealso:: `wx.Process <../Widgets/wx.Process.html>`_ Derived From ^^^^^^^^^^^^^ * `wx.Event `_ * `wx.Object <../Widgets/wx.Object.html>`_ Event Handling ^^^^^^^^^^^^^^ ================================================== ================================================== Event Name Description ================================================== ================================================== wx.EVT_END_PROCESS(id, func) Process a ``wx.wxEVT_END_PROCESS`` event. `id` is the identifier of the process object (the id passed to the `wx.Process <../Widgets/wx.Process.html>`_ constructor) or a window to receive the event. ================================================== ================================================== Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetExitCode <#GetExitCode>`_ * `GetPid <#GetPid>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `ExitCode <#ExitCode>`_ * `Pid <#Pid>`_ * `m_exitcode <#m_exitcode>`_ * `m_pid <#m_pid>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(id=0, pid=0, exitcode=0) Constructor. Takes a `wx.Process <../Widgets/wx.Process.html>`_ object or window id, a process id and an exit status. **Parameters:** * `id` (int) * `pid` (int) * `exitcode` (int) | **Returns:** `wx.ProcessEvent `_ -------- .. method:: GetExitCode() Returns the exist status. | **Returns:** `int` -------- .. method:: GetPid() Returns the process id. | **Returns:** `int` -------- Properties ^^^^^^^^^^ .. attribute:: ExitCode See `GetExitCode <#GetExitCode>`_ .. attribute:: Pid See `GetPid <#GetPid>`_ .. attribute:: m_exitcode See `GetExitCode <#GetExitCode>`_ .. attribute:: m_pid See `GetPid <#GetPid>`_