radiogroup

Represents a group of radiobuttons. It also lets you implement "dynamic" control groups. You can assign a group of controls to each radiobutton and the interface will dynamically change depending on which of them is checked.

Radiobuttons are defined with the item tag with the caption parameter in it. If you want to assign a group of controls to a particular radiobutton, put control tags under the item tag.

Parameters:

Parameter Description Default value
name inherited parameter
default inherited parameter
caption inherited parameter

Example:

<?xml version="1.0" encoding="ISO-8859-1"?>
<root dpix="96" dpiy="96">
 <radiogroup name="radio1" caption="Connection method" default="0">
  <item caption="Use default"/>
  <item caption="Dial-up">
   <edit name="phone" caption="Phone number"/>
   <edit name="login" caption="Login" labelpos="left"/>
   <edit name="passw" caption="Password" labelpos="left"
      password="1"/>
  </item>
  <item caption="Proxy server">
   <combolist name="ptype" caption="Type of proxy" default="0">
    <item caption="HTTPP"/>
    <item caption="SOCKS5"/>
   </combolist>
   <edit name="p_login" caption="Username" labelpos="left"/>
   <edit name="p_passw" caption="Password" labelpos="left"
      password="1"/>
  </item>
 </radiogroup>
</root>

Result:
  

 

The CHM file was converted to HTML by chm2web software.