DXRadioGroup¶
DevXpress RadioGroup.
UI element class: DevExpress.XtraEditors.RadioGroup
Extends ManagedObject
Extends SeSSimulatedObject
Behavior Pattern: DXRadioGroupBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| ItemCount | Number of items. | GetItemCount | |
| SelectedIndex | Index of the selected element of the object. | GetSelectedIndex | SetSelectedIndex |
| Text | Text of the label of the object | GetText |
Action Summary¶
| Action | Description |
|---|---|
| DoSelectItem | Selects Item |
Property Detail¶
ItemCount¶
Number of items.
Type: number
Accessors: GetItemCount
value = SeS('SomeDXRadioGroup').GetItemCount()
SelectedIndex¶
Index of the selected element of the object.
Type: number
Accessors: GetSelectedIndex, SetSelectedIndex
value = SeS('SomeDXRadioGroup').GetSelectedIndex()
SeS('SomeDXRadioGroup').SetSelectedIndex(value)
Text¶
Text of the label of the object
Type: string
Accessors: GetText
value = SeS('SomeDXRadioGroup').GetText()
Action Detail¶
DoSelectItem¶
Selects Item
SeS('SomeDXRadioGroup').DoSelectItem(index)
Parameters:
| Name | Type | Description |
|---|---|---|
| index | number | Index of the element to check |
Returns:
boolean: 'true' if successful, 'false' otherwise