Value - property of the PmgRadioButton object
Description:
Index of the selected text (zero-based index).
Note:
Property access
for read and write.
The default value of this property is defined in the "
Selection index" configurator of this object.
If it is written into this property and if this property is linked to the data binding
PP,
AP,
SP,
OP or
GP, then this value is transferred also into the source of this data binding.
This property is also functional in
Web panels.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oBtnRadio = pMe.Items("/BtnRadio");
var value = oBtnRadio.Value;
// Reading from the property
oBtnRadio.Value = 1;
// Writing into the property
Dim oBtnRadio
Set oBtnRadio = pMe.Items("/BtnRadio")
Dim value
value = oBtnRadio.Value
' Reading from the property
oBtnRadio.Value = 1
' Writing into the property