WebRadioGroup.CellEnabled

From Xojo Documentation

Method

WebRadioGroup.CellEnabled(Row as Integer, Column as Integer) As Boolean

New in 2010r4

Supported for all project types and targets.

Gets or set the enabled state of the passed radiobutton. Row and column are zero-based. If True, the specified radio button is enabled.

Examples

The following line disables the second radiobutton:

RadioGroup1.CellEnabled(1, 0) = False

The following code reads the enabled status of that radiobutton:

If RadioGroup1.CellEnabled(1, 0) Then
MsgBox("Enabled")
Else
MsgBox("Disabled")
End If