BIS fnc keyCode: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Function " to "{{RV|type=function ")
m (Text replacement - "<code> *([^<|{]*) *<\/code>" to "<sqf>$1</sqf>")
 
(10 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function


| arma3
|game1= arma3
|version1= 1.00


|1.00
|gr1= GUI


|gr1 = GUI
|descr= Returns DIK code of a given key.


| Returns DIK code of a given key.
|s1= input call [[BIS_fnc_keyCode]]


| input call [[BIS_fnc_keyCode]]
|p1= input:
* [[Number]]: Key code
* [[String]]: Key name
* [[Boolean]]: Return key definitions


|p1= input:<br>
|x1= <sqf>13 call BIS_fnc_keyCode; // Returns "EQUALS"</sqf>
[[Number]]: Key code<br>
[[String]]: Key name<br>
[[Boolean]]: Return key definitions


|x1= <code>13 call [[BIS_fnc_keyCode]];//Returns "EQUALS"</code>
|x2= <sqf>"EQUALS" call BIS_fnc_keyCode; // returns 13</sqf>


|x2= <code>"EQUALS" call [[BIS_fnc_keyCode]];//Returns 13</code>
|x3= <sqf>true call BIS_fnc_keyCode; // returns ["ESCAPE",1,"1",2,"2",3,"3",4,"4",5,"5",6,"6",7,"7",8,"8",9,"9",10,"0",11,"MINUS",12,"EQUALS",13...]</sqf>


|x3= <code>[[true]] call [[BIS_fnc_keyCode]];//Returns ["ESCAPE",1,"1",2,"2",3,"3",4,"4",5,"5",6,"6",7,"7",8,"8",9,"9",10,"0",11,"MINUS",12,"EQUALS",13...]</code>
|r1= [[String]], [[Number]] or [[Array]]


|[[String]], [[Number]] or [[Array]]
|seealso= [[DIK KeyCodes]]
 
| [[DIK KeyCodes]]
}}
}}
[[Category:Functions|{{uc:keyCode}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:keyCode}}]]

Latest revision as of 23:44, 12 July 2022

Hover & click on the images for description

Description

Description:
Returns DIK code of a given key.
Execution:
call
Groups:
GUI

Syntax

Syntax:
input call BIS_fnc_keyCode
Parameters:
input:
Return Value:
String, Number or Array

Examples

Example 1:
13 call BIS_fnc_keyCode; // Returns "EQUALS"
Example 2:
"EQUALS" call BIS_fnc_keyCode; // returns 13
Example 3:
true call BIS_fnc_keyCode; // returns ["ESCAPE",1,"1",2,"2",3,"3",4,"4",5,"5",6,"6",7,"7",8,"8",9,"9",10,"0",11,"MINUS",12,"EQUALS",13...]

Additional Information

See also:
DIK KeyCodes

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