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