phoenix_title 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 Class Hierarchy¶

Inheritance diagram for class FileDialogRadioButton:

method_summary Methods Summary¶

GetValue

Return True if the radio button is selected.

SetValue

Select the value of the radio button.


property_summary Properties Summary¶

Value

See GetValue and SetValue


api 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 with wx.RadioButton.SetValue .

Parameters:

value (bool)

Return type:

None


Properties¶

Value¶

See GetValue and SetValue