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.
New in version 4.1/wxWidgets-3.1.7.
Return |
|
Select the value of the radio button. |
wx.
FileDialogRadioButton
(FileDialogCustomControl)¶Represents a custom radio button inside FileDialog.
GetValue
(self)¶Return True
if the radio button is selected.
bool
SetValue
(self, value : bool)¶Select the value of the radio button.
Using False
for value is not supported, this argument only exists for consistency with wx.RadioButton.SetValue
.
value (bool) –
None