displayCtrl: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<!-- Note Section [A-Z]+ --> " to "")
m (Text replacement - "\| \[\[.+\]\] \<nowiki\>\=\<\/nowiki\> " to "| ")
Line 9: Line 9:
| Return child control with specified idc.
| Return child control with specified idc.


| [[Control]] <nowiki>=</nowiki> display '''displayCtrl''' idc
| display '''displayCtrl''' idc


|p1= display: [[Display]]
|p1= display: [[Display]]

Revision as of 17:34, 8 May 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
GUI Control

Syntax

Syntax:
Syntax needed
Parameters:
display: Display
idc: Number
Return Value:
Return value needed

Examples

Example 1:
_ChildControl = _ParentDisplay displayCtrl 101;

Additional Information

See also:
findDisplayctrlCreatectrlDeletectrlModelctrlSetModelctrlPositionctrlSetPositionctrlClassNamectrlModelScalectrlSetModelScalectrlModelDirAndUpctrlSetModelDirAndUpdisplayParent

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
Posted on May 1, 2017 - 03:44 (UTC)
Demellion
Since Arma 3 1.42 you can also return a control inside a controls group using controlsGroupCtrl (created with ctrlCreate or inside a controls[] of a control config). Example: ((uiNamespace getVariable "RscUnitInfo") displayCtrl 2303) controlsGroupCtrl 154; // Display -> Controls Group -> Control Note that control inside controls group having -1 IDC currently cannot be returned in any way.