__init__ |
|
CreateControls |
Instantiates editor controls. |
GetName |
Returns pointer to the name of the editor. |
wx.propgrid.
PGTextCtrlAndButtonEditor
(PGTextCtrlEditor)¶Possible constructors:
PGTextCtrlAndButtonEditor()
__init__
(self)¶CreateControls
(self, propgrid, property, pos, size)¶Instantiates editor controls.
Parameters: |
|
---|---|
Return type: |
Note
PG_SUBID1
, and secondary (button) control shall use PG_SUBID2
.wx.EvtHandler.Connect
for interesting editor events. Instead, all events from control are now 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 dont’ need to access your custom editor by string name, then you do not need to implement this function.
Return type: | string |
---|