Represents a custom checkbox inside wx.FileDialog.
Objects of this class can only be created by wx.FileDialogCustomize.AddCheckBox
.
It is possible to bind to wxEVT_CHECKBOX events on this object, which will be generated when the checkbox is clicked.
See wx.FileDialogCustomControl for more information.
New in version 4.1/wxWidgets-3.1.7.
Return |
|
Check or uncheck the checkbox. |
wx.
FileDialogCheckBox
(FileDialogCustomControl)¶Represents a custom checkbox inside FileDialog.
GetValue
(self)¶Return True
if the checkbox is checked.
bool
SetValue
(self, value : bool)¶Check or uncheck the checkbox.
value (bool) –
None