User Tools

Site Tools


koda:en:documentation:control_radio

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

koda:en:documentation:control_radio [2014/07/10 10:48]
koda:en:documentation:control_radio [2014/07/10 10:48] (current)
Line 1: Line 1:
 +====== Radio ======
 +{{page>commctrl}}
 +{{page>commstyle}}
 +{|class="cboxtable"
 +|-
 +|class="cboxcell1"|{{  control_radio.gif  |}}
 +|class="cboxcell2"|**TARadio**
 +|}
  
 +Creates a radio button control
 +
 +#remarks_header[Properties:]#
 +
 +|**Caption**|{{KODA>VAR>Caption}} |
 +|**Checked**|If True, radio is checked |
 +|**Color**|{{KODA>VAR>Color}} |
 +|**ContextMenu**|{{KODA>VAR>ContextMenu}} |
 +|**Cursor**|{{KODA>VAR>Cursor}} |
 +|**Enabled**|False generates <color blue>GUICtrlSetState(-1, $GUI_DISABLE)</color> |
 +|**Font**|{{KODA>VAR>Font}} |
 +|**Left,Top**|{{KODA>VAR>Left,Top}} |
 +|**Width,Height**|{{KODA>VAR>Width,Height}} |
 +|**Hint**|Text that appears when cursor hovers over control. Generates call to <color blue>GUICtrlSetTip</color> |
 +|**Name**|{{KODA>VAR>Name}} |
 +|**OnClick**|Generates (in Message Loop mode) a <color blue>Case</color> or (in OnEvent mode) a call to <color blue>GUISetOnEvent</color> and a skeleton event function. Double-click to right to open Events editor |
 +|**Resizing**|{{KODA>VAR>Resizing}} |
 +|**TabOrder**|Sequence in which controls are selected with the <key>Tab</key> and <key>S-Tab</key> keys. For a Form and for each Group, TabOrder starts with 0. You may prefer to use the [[dialog_tab_order_editor|TabOrder Visual Editor]]: press <key>C-t</key> to open it. |
 +|**Visible**|If False, generates  <color blue>GUICtrlSetState(-1, $GUI_HIDE)</color> |
 +
 +#remarks_header[Styles:]#
 +
 +|BS_RADIOBUTTON|Creates small circle with **Caption** to the right of it |
 +|BS_AUTORADIOBUTTON|Like BS_RADIOBUTTON but when clicked, it sets itself and resets other BS_AUTORADIOBUTTON buttons in the ControlGroup, Group or (if not in a group) the Form|
 +|BS_RIGHTBUTTON|Button is to right of Caption |
 +|BS_LEFT|Left-aligns the text, word-wrapping if BS_MULTILINE is checked |
 +|BS_RIGHT|Center-aligns text, word-wrapping if BS_MULTILINE is checked |
 +|BS_CENTER|Right-aligns text, word-wrapping if BS_MULTILINE is checked |
 +|BS_TOP|Places text at top of button |
 +|BS_BOTTOM|Places text at bottom of button  |
 +|BS_VCENTER|Vertically centers text in button |
 +|BS_PUSHLIKE| |
 +|BS_MULTILINE|Wraps text to multiple lines if text doesn't fit on one line |
 +|BS_FLAT|Button appears two-dimensional |
 +|WS_TABSTOP|Control can be selected with <key>Tab</key> and <key>S-Tab</key> |
 +|WS_HSCROLL|{{KODA>VAR>WS_HSCROLL}} |
 +|WS_VSCROLL| {{KODA>VAR>WS_VSCROLL}}|
 +|WS_BORDER|{{KODA>VAR>WS_BORDER}} |
 +|WS_CLIPSIBLINGS|{{KODA>VAR>WS_CLIPSIBLINGS}} |
 +
 +#remarks_header[Extra Styles:]#
 +
 +|WS_EX_CLIENTEDGE|{{KODA>VAR>WS_EX_CLIENTEDGE}}|
 +|WS_EX_STATICEDGE|{{KODA>VAR>WS_EX_STATICEDGE}} |
 +
 +#remarks_header[Remarks:]#
 +
 +Use [[control_ControlGroup]] to  make the states of Radio controls mutually dependent
 +
 +#remarks_header[Related:]#
 +
 +[[control_ControlGroup]]
koda/en/documentation/control_radio.txt ยท Last modified: 2014/07/10 10:48 (external edit)