Package Win32::GUI::RadioButton
Constructor
new Win32::GUI::RadioButton(PARENT, %OPTIONS)
Creates a new RadioButton object; can also be called as PARENT->AddRadioButton(%OPTIONS). %OPTIONS are the same of Button (see new Win32::GUI::Button() ).
Methods
Checked([VALUE])
Gets or sets the checked state of the RadioButton; if called without arguments, returns the current state:
0 not checked
1 checked
If a VALUE is specified, it can be one of these (eg. 0 to uncheck the RadioButton, 1 to check it).
Events
Click()
Sent when the control is selected (eg. the button pushed, the checkbox checked, etc.).
DblClick() Sent when the user double clicks on the control.
GotFocus() Sent when the control is activated.
LostFocus() Sent when the control is deactivated.