ctrlSetChecked: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (Some wiki formatting)
 
(45 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma3 |= Game name
|game1= arma3
|version1= 0.50


|0.50|= Game version
|gr1= GUI Control
____________________________________________________________________________________________


| Sets checked state of checkbox (CT_CHECKBOXES, Type 7). |= Description
|descr= Sets checked state of a [[CT_CHECKBOXES]] control.
____________________________________________________________________________________________


| control '''ctrlSetChecked''' bool |= Syntax
|s1= control [[ctrlSetChecked]] checked


|p1= control: [[Control]] |= PARAMETER1
|p1= control: [[Control]] - [[CT_CHECKBOXES]] control. If control contain multiple checkboxes, only checkbox with index 0 is queried.


|p2= bool: [[Boolean]] |= PARAMETER2
|p2= checked: [[Boolean]] - [[true]] to check, [[false]] to uncheck the checkbox


| [[Nothing]] |= RETURNVALUE
|r1= [[Nothing]]


|s2= control [[ctrlSetChecked]] [index, checked]


|x1= <code>
|s2since= arma3 1.72
</code>|= EXAMPLE1


____________________________________________________________________________________________
|p21= control: [[Control]] - [[CT_CHECKBOXES]] control


| [[ctrlChecked]], [[cbChecked]], [[cbSetChecked]] |= SEEALSO
|p22= index: [[Number]] - checkbox index


| |= MPBEHAVIOUR
|p23= checked: [[Boolean]] - [[true]] to check, [[false]] to uncheck the checkbox
____________________________________________________________________________________________
 
}}
|r2=[[Nothing]]


<h3 style='display:none'>Notes</h3>
|x1= <sqf>_control ctrlSetChecked true;</sqf>
<dl class='command_description'>
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|x2= <sqf>_control ctrlSetChecked [3, true];</sqf>
</dl>


<h3 style='display:none'>Bottom Section</h3>
|seealso= [[ctrlChecked]] [[cbChecked]] [[cbSetChecked]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Arma 3: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]

Latest revision as of 23:37, 4 September 2022

Hover & click on the images for description

Description

Description:
Sets checked state of a CT_CHECKBOXES control.
Groups:
GUI Control

Syntax

Syntax:
control ctrlSetChecked checked
Parameters:
control: Control - CT_CHECKBOXES control. If control contain multiple checkboxes, only checkbox with index 0 is queried.
checked: Boolean - true to check, false to uncheck the checkbox
Return Value:
Nothing

Alternative Syntax

Syntax:
control ctrlSetChecked [index, checked]
Parameters:
control: Control - CT_CHECKBOXES control
index: Number - checkbox index
checked: Boolean - true to check, false to uncheck the checkbox
Return Value:
Nothing

Examples

Example 1:
_control ctrlSetChecked true;
Example 2:
_control ctrlSetChecked [3, true];

Additional Information

See also:
ctrlChecked cbChecked cbSetChecked

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note