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: int=0, iconized: bool=True) -> None

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


Methods

__init__(self, id: int = 0, iconized: bool = 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