WebRadioButton

From Xojo Documentation

Class (inherits from Object)


New in 2020r1

A single radio button that appears as part of a WebRadioGroup control.

Properties
Caption Tag
Enabled Value
Constructors

Constructor(value As String, enabled As Boolean = True)


Sample Code

This example shows adding a WebRadioButton to a WebRadioGroup:

RadioGroup1.AddRow(New WebRadioButton("Today", True))

This example shows adding a WebRadioButton to a WebRadioGroup with the Tag property set to the current date:

Var button As New WebRadioButton("Today", True)
button.Tag = DateTime.Now
RadioGroup1.AddRow(button)

See Also

WebRadioGroup control.