GuiRadioButtonGetSelected: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 7: Line 7:
bool guiRadioButtonGetSelected( element guiRadioButton )
bool guiRadioButtonGetSelected( element guiRadioButton )
</syntaxhighlight>  
</syntaxhighlight>  
{{OOP||[[Element/GUI/Radio button|GuiRadioButton]]:getSelected|selected|guiRadioButtonSetSelected}}


===Required Arguments===  
===Required Arguments===  
Line 31: Line 32:
==See Also==
==See Also==
{{GUI_functions}}
{{GUI_functions}}
{{GUI_events}}

Latest revision as of 19:30, 6 September 2021

This function gets a radio button's selection state.

Syntax

bool guiRadioButtonGetSelected( element guiRadioButton )

OOP Syntax Help! I don't understand this!

Method: GuiRadioButton:getSelected(...)
Variable: .selected
Counterpart: guiRadioButtonSetSelected


Required Arguments

  • guiRadioButton: The radio button you wish to retrieve the selection state of.

Returns

Returns true if the radio button is selected, false if it is not.

Example

This example creates a radio button then checks if one is selected and if it is, then it's output the title and sets the next radio button selected. (TESTED!)

hi = guiCreateRadioButton(243,204,36,16,"Hi",false)
guiRadioButtonSetSelected(hi,true)
bye = guiCreateRadioButton(243,224,41,16,"Bye",false)

if(guiRadioButtonGetSelected(hi))then
	outputChatBox("Hi "..getPlayerName(localPlayer))
	guiRadioButtonSetSelected(bye,true)
else
	outputChatBox("Bye "..getPlayerName(localPlayer))
	guiRadioButtonSetSelected(hi,true)
end

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows

Input

GUI