wx.FileDialogRadioButton¶
Represents a custom radio button inside wx.FileDialog.
Objects of this class can only be created by wx.FileDialogCustomize.AddRadioButton
.
It is possible to bind to wxEVT_RADIOBUTTON events on this object, which will be generated when the radio button is selected.
See wx.FileDialogCustomControl for more information.
Added in version 4.1/wxWidgets-3.1.7.
Class Hierarchy¶
Methods Summary¶
Return |
|
Select the value of the radio button. |
Properties Summary¶
Class API¶
- class wx.FileDialogRadioButton(FileDialogCustomControl)¶
Represents a custom radio button inside FileDialog.
Methods¶
- GetValue(self)¶
Return
True
if the radio button is selected.- Return type:
bool
- SetValue(self, value)¶
Select the value of the radio button.
Using
False
for value is not supported, this argument only exists for consistency withwx.RadioButton.SetValue
.- Parameters:
value (bool)
- Return type:
None
Properties¶