 
       wx.aui.AuiManagerEvent¶
  wx.aui.AuiManagerEvent¶Event used to indicate various actions taken with wx.aui.AuiManager.
See wx.aui.AuiManager for available event types.
 Events Emitted by this Class¶
 Events Emitted by this Class¶Handlers bound for the following event types will receive a wx.aui.AuiManagerEvent parameter.
See also
 Methods Summary¶
 Methods Summary¶| __init__ | Constructor. | 
| CanVeto | |
| GetButton | |
| GetDC | |
| GetManager | |
| GetPane | |
| GetVeto | |
| SetButton | Sets the IDof the button clicked that triggered this event. | 
| SetCanVeto | Sets whether or not this event can be vetoed. | 
| SetDC | |
| SetManager | Sets the wx.aui.AuiManager this event is associated with. | 
| SetPane | Sets the pane this event is associated with. | 
| Veto | Cancels the action indicated by this event if CanVetoisTrue. | 
 Properties Summary¶
 Properties Summary¶| Button | See GetButtonandSetButton | 
| DC | See GetDCandSetDC | 
| Manager | See GetManagerandSetManager | 
| Pane | See GetPaneandSetPane | 
 Class API¶
 Class API¶wx.aui.AuiManagerEvent(Event)¶Possible constructors:
AuiManagerEvent(type=wxEVT_NULL)
Event used to indicate various actions taken with AuiManager.
__init__(self, type=wxEVT_NULL)¶Constructor.
| Parameters: | type (wx.EventType) – | 
|---|
GetButton(self)¶| Return type: | int | 
|---|---|
| Returns: | The IDof the button that was clicked. | 
GetManager(self)¶| Return type: | wx.aui.AuiManager | 
|---|---|
| Returns: | The wx.aui.AuiManager this event is associated with. | 
GetPane(self)¶| Return type: | wx.aui.AuiPaneInfo | 
|---|---|
| Returns: | The pane this event is associated with. | 
SetButton(self, button)¶Sets the ID of the button clicked that triggered this event.
| Parameters: | button (int) – | 
|---|
SetCanVeto(self, can_veto)¶Sets whether or not this event can be vetoed.
| Parameters: | can_veto (bool) – | 
|---|
SetManager(self, manager)¶Sets the wx.aui.AuiManager this event is associated with.
| Parameters: | manager (wx.aui.AuiManager) – | 
|---|
SetPane(self, pane)¶Sets the pane this event is associated with.
| Parameters: | pane (wx.aui.AuiPaneInfo) – | 
|---|
Veto(self, veto=True)¶Cancels the action indicated by this event if CanVeto   is True.
| Parameters: | veto (bool) – | 
|---|
Manager¶See GetManager and SetManager