WebRadioGroup.RowCount
From Xojo Documentation
Property (As Integer )
aWebRadioGroup.RowCount = newIntegerValue
or
IntegerValue = aWebRadioGroup.RowCount
New in 2010r4
Supported for all project types and targets.
or
IntegerValue = aWebRadioGroup.RowCount
New in 2010r4
Supported for all project types and targets.
Gets or sets the number of rows of radio buttons in the group.
Notes
This property can only be changed in the Open event handler.
Example
This example displays the numbers of rows and columns in two Label controls.
Label1.Text = Str(RadioGroup1.RowCount)
Label2.Text = Str(RadioGroup1.ColumnCount)
Label2.Text = Str(RadioGroup1.ColumnCount)
This example sets the number of rows.
Me.RowCount = 3