wx.ProcessEvent

Inheritance diagram for wx.ProcessEvent:



Description

A process event is sent when a process is terminated.

See also

wx.Process

Derived From

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 constructor) or a window to receive the event.

Methods Summary

Properties Summary

Class API

Methods

__init__(id=0, pid=0, exitcode=0)

Constructor. Takes a wx.Process object or window id, a process id and an exit status.

Parameters:

  • id (int)
  • pid (int)
  • exitcode (int)

Returns:

wx.ProcessEvent


GetExitCode()

Returns the exist status.


Returns:

int


GetPid()

Returns the process id.


Returns:

int


Properties

ExitCode
See GetExitCode
Pid
See GetPid
m_exitcode
See GetExitCode
m_pid
See GetPid