Base class for controls used for in-place edit.
__init__ |
Default class constructor. |
AcceptChanges |
Accepts/refuses the changes made by the user. |
column |
Returns the column currently edited. |
Finish |
Finish editing. |
item |
Returns the item currently edited. |
OnKillFocus |
Handles the wx.EVT_KILL_FOCUS event for EditCtrl |
StopEditing |
Suddenly stops the editing. |
EditCtrl
(object)¶Base class for controls used for in-place edit.
__init__
(self, parent, id=wx.ID_ANY, item=None, column=None, owner=None, value="", pos=wx.DefaultPosition, size=wx.DefaultSize, style=0, validator=wx.DefaultValidator, name="editctrl", **kwargs)¶Default class constructor.
Parameters: |
|
---|
AcceptChanges
(self)¶Accepts/refuses the changes made by the user.
column
(self)¶Returns the column currently edited.
Finish
(self)¶Finish editing.
item
(self)¶Returns the item currently edited.
OnKillFocus
(self, event)¶Handles the wx.EVT_KILL_FOCUS
event for EditCtrl
Parameters: | event – a FocusEvent event to be processed. |
---|
StopEditing
(self)¶Suddenly stops the editing.