Obtaining Text From Selected Radio Button

I am currently trying to pull the text from a radio button based on the user’s selection. Does anyone know what method to use in order to obtain it? I tried using RadioGroupButton.SelectedRowItem.Value.ToString but that always returned True, regardless of the selection. Any help would be appreciated.

Hi Noah, try using the DesktopRadioGroup.SelectionChanged () event. This link should take you to some sample code that I hope helps.

DesktopRadioGroup.SelectedItem.Caption

1 Like

Sorry for the late reply. This worked perfectly, thank you!

1 Like