WebRadioGroup.SelectedRow
From Xojo Documentation
![]() |
This item was deprecated in version 2021r1. Please use WebRadioGroup.SelectedItem as a replacement. |
Method
WebRadioGroup.SelectedRow() As WebRadioButton
New in 2020r1
Supported for all project types and targets.
New in 2020r1
Supported for all project types and targets.
Returns the selected WebRadioButton.
Sample Code
This example displays a MessageBox with the current date and time if the user has selected the radio button whose caption is "Today":
If RadioGroup1.SelectedRow.Caption = "Today" Then
MessageBox("Today is: " + DateTime.Now.ToString)
End If
MessageBox("Today is: " + DateTime.Now.ToString)
End If
See Also
WebRadioButton class.