This event class is used for the events generated by wx.CollapsiblePane.
^^
Handlers bound for the following event types will receive a wx.CollapsiblePaneEvent parameter.
EVT_COLLAPSIBLEPANE_CHANGED: The user expanded or collapsed the collapsible pane. ^^
The constructor is not normally used by the user code. |
|
Returns |
|
Sets this as a collapsed pane event (if collapsed is |
See |
wx.
CollapsiblePaneEvent
(CommandEvent)¶Possible constructors:
CollapsiblePaneEvent(generator : Object, id : int, collapsed : bool) ->
None
This event class is used for the events generated by CollapsiblePane.
__init__
(self, generator : Object, id : int, collapsed : bool)¶The constructor is not normally used by the user code.
generator (wx.Object) –
id (int) –
collapsed (bool) –
None
GetCollapsed
(self)¶Returns True
if the pane has been collapsed.
bool
SetCollapsed
(self, collapsed : bool)¶Sets this as a collapsed pane event (if collapsed is True
) or as an expanded pane event (if collapsed is False
).
collapsed (bool) –
None
Collapsed
¶See GetCollapsed
and SetCollapsed