setInternalMargin(This,Margin)->ok
Types:
This = wxPickerBase()
Margin = integer()
Sets the margin (in pixel) between the picker and the text control.
This function can be used only when hasTextCtrl/1 returns true.
getInternalMargin(This)->integer()
Types:
This = wxPickerBase()
Returns the margin (in pixel) between the picker and the text control.
This function can be used only when hasTextCtrl/1 returns true.
setTextCtrlProportion(This,Prop)->ok
Types:
This = wxPickerBase()
Prop = integer()
Sets the proportion value of the text control.
Look at the detailed description of wxPickerBase for more info.
This function can be used only when hasTextCtrl/1 returns true.
setPickerCtrlProportion(This,Prop)->ok
Types:
This = wxPickerBase()
Prop = integer()
Sets the proportion value of the picker.
Look at the detailed description of wxPickerBase for more info.
getTextCtrlProportion(This)->integer()
Types:
This = wxPickerBase()
Returns the proportion value of the text control.
This function can be used only when hasTextCtrl/1 returns true.
getPickerCtrlProportion(This)->integer()
Types:
This = wxPickerBase()
Returns the proportion value of the picker.
hasTextCtrl(This)->boolean()
Types:
This = wxPickerBase()
Returns true if this window has a valid text control (i.e. if the wxPB_USE_TEXTCTRL style was
given when creating this control).
getTextCtrl(This)->wxTextCtrl:wxTextCtrl()
Types:
This = wxPickerBase()
Returns a pointer to the text control handled by this window or NULL if the wxPB_USE_TEXTCTRL
style was not specified when this control was created.
Remark: The contents of the text control could be an invalid representation of the entity which
can be chosen through the picker (e.g. when the user enters an invalid colour syntax because of a
typo). Thus you should never parse the content of the textctrl to get the user's input; rather use
the derived-class getter (e.g. wxColourPickerCtrl:getColour/1, wxFilePickerCtrl:getPath/1, etc).
isTextCtrlGrowable(This)->boolean()
Types:
This = wxPickerBase()
Returns true if the text control is growable.
This function can be used only when hasTextCtrl/1 returns true.
setPickerCtrlGrowable(This)->ok
Types:
This = wxPickerBase()
setPickerCtrlGrowable(This,Options::[Option])->ok
Types:
This = wxPickerBase()
Option = {grow, boolean()}
Sets the picker control as growable when grow is true.
setTextCtrlGrowable(This)->ok
Types:
This = wxPickerBase()
setTextCtrlGrowable(This,Options::[Option])->ok
Types:
This = wxPickerBase()
Option = {grow, boolean()}
Sets the text control as growable when grow is true.
This function can be used only when hasTextCtrl/1 returns true.
isPickerCtrlGrowable(This)->boolean()
Types:
This = wxPickerBase()
Returns true if the picker control is growable.
wxWidgets team. wx 2.1.1 wxPickerBase(3erl)