guiRadioButtonCreate (Function) |
Top Previous Next |
This function creates a new radio button on the provided form. Radio buttons are used to select between multiple choices, where only one choice can be active at a time. Selecting a radio button triggers the radio button selected event. Multiple groups of radio buttons can be created, where only one radio button can be enabled at a time in each group.
Input: form : SYSHANDLE A handle to the form that the radio button is created on.
x : SINT default 1 The horizontal location of the radio button.
y : SINT default 1 The vertical location of the radio button.
w : SINT default 1 The width of the radio button.
h : SINT default 1 The height of the radio button.
tag : DINT The tag value to store.
group : SINT A value that must be the same for all radio buttons in the same group.
selected : BOOL default false If the radio button should start selected. If this is used on multiple radio buttons in the same group, the radio button that is initialized last will be selected.
Output: radio_button : SYSHANDLE The handle to the new radio button.
Returns: INT
Declaration: FUNCTION guiRadioButtonCreate : INT;
Example: INCLUDE rtcu.inc |