WebRadioGroup.CellVisible
From Xojo Documentation
Method
WebRadioGroup.CellVisible(Row as Integer, Column as Integer) As Boolean
New in 2010r4
Supported for all project types and targets.
New in 2010r4
Supported for all project types and targets.
If True, the specified radio button is visible in the built application. The default is True. If it is False, the button is not visible in the running application. Row and Column are zero-based.
Example
Make the last radio button invisible:
RadioGroup1.CellVisible(RadioGroup1.RowCount-1, RadioGroup1.ColumnCount-1) = False