phoenix_title wx.IconizeEvent¶

An event being sent when the frame is iconized (minimized) or restored.

events Events Emitted by this Class¶

Handlers bound for the following event types will receive a wx.IconizeEvent parameter.

  • EVT_ICONIZE: Process a wxEVT_ICONIZE event.


class_hierarchy Class Hierarchy¶

Inheritance diagram for class IconizeEvent:

method_summary Methods Summary¶

__init__

Constructor.

IsIconized

Returns True if the frame has been iconized, False if it has been restored.


api Class API¶

class wx.IconizeEvent(Event)¶

Possible constructors:

IconizeEvent(id=0, iconized=True) -> None

An event being sent when the frame is iconized (minimized) or restored.


Methods¶

__init__(self, id=0, iconized=True)¶

Constructor.

Parameters:
  • id (int)

  • iconized (bool)

Return type:

None



IsIconized(self)¶

Returns True if the frame has been iconized, False if it has been restored.

Return type:

bool