BIS fnc getIDC: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "code>_([a-zA-Z0-9_]+) = " to "code>private _$1 = ")
m (Text replacement - "(\|[pr][0-9]+ *= *[^-]+) *- *C([a-eg-z])" to "$1 - c$2")
 
(7 intermediate revisions by the same user not shown)
Line 13: Line 13:
|s1= [config, ctrlName] call [[BIS_fnc_getIDC]]
|s1= [config, ctrlName] call [[BIS_fnc_getIDC]]


|p1= config: [[Config]] - Config path to display
|p1= config: [[Config]] - config path to display
|p2= ctrlName: [[String]] - Config name of [[Control|control]]
|p2= ctrlName: [[String]] - config name of [[Control|control]]


|r1= [[Number]] - IDC, returns -1 if control was not found
|r1= [[Number]] - IDC, returns -1 if control was not found


|x1= <code>[[private]] _IDC = [<nowiki/>[[configFile]] >> "Display3DENPlace", "ButtonCancel"] [[call]] [[BIS_fnc_getIDC]];</code>
|x1= <sqf>private _IDC = [configFile >> "Display3DENPlace", "ButtonCancel"] call BIS_fnc_getIDC;</sqf>


|seealso= [[configFile]] [[findDisplay]], [[createDisplay]], [[displayCtrl]]
|seealso= [[configFile]] [[findDisplay]] [[createDisplay]] [[displayCtrl]]
}}
}}

Latest revision as of 15:00, 8 November 2023

Hover & click on the images for description

Description

Description:
Returns IDD of given display.
Execution:
call
Groups:
GUI

Syntax

Syntax:
[config, ctrlName] call BIS_fnc_getIDC
Parameters:
config: Config - config path to display
ctrlName: String - config name of control
Return Value:
Number - IDC, returns -1 if control was not found

Examples

Example 1:
private _IDC = [configFile >> "Display3DENPlace", "ButtonCancel"] call BIS_fnc_getIDC;

Additional Information

See also:
configFile findDisplay createDisplay displayCtrl

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