Instantiates editor controls. |
|
Returns pointer to the name of the editor. |
See |
wx.propgrid.
PGTextCtrlAndButtonEditor
(PGTextCtrlEditor)¶Possible constructors:
PGTextCtrlAndButtonEditor()
__init__
(self)¶CreateControls
(self, propgrid, property, pos, size)¶Instantiates editor controls.
propgrid (wx.propgrid.PropertyGrid) – wx.propgrid.PropertyGrid to which the property belongs (use as parent for control).
property (wx.propgrid.PGProperty) – Property for which this method is called.
pos (wx.Point) – Position, inside wx.propgrid.PropertyGrid, to create control(s) to.
size (wx.Size) – Initial size for control(s).
Note
It is not necessary to call wx.EvtHandler.Bind
for interesting editor events. All events from controls are automatically forwarded to wx.propgrid.PGEditor.OnEvent
and wx.propgrid.PGProperty.OnEvent
.
GetName
(self)¶Returns pointer to the name of the editor.
For example, PGEditor_TextCtrl has name “TextCtrl”. If you don’t need to access your custom editor by string name, then you do not need to implement this function.
string