WebRadioGroup.CellCaption
From Xojo Documentation
Method
WebRadioGroup.CellCaption(Row as Integer, Column as Integer) As String
New in 2010r4
Supported for all project types and targets.
New in 2010r4
Supported for all project types and targets.
Gets or sets the caption (label) of the passed radio button. Row and Column are zero-based.
Notes
The Caption can be surrounded by "<raw></raw>" tags to temporarily disable HTML parsing. For example, you could bold just a single word in a Caption by doing this:
RadioGroup1(0, 0).Caption = "<raw><b>bold</b></raw> text"
Examples
Getting an existing CellCaption:
MsgBox(RadioGroup1.CellCaption(0, 0))
Setting a CellCaption:
RadioGroup1.CellCaption(0, 0) = "Top Left Radio Button"