uiNamespace: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Added command group Namespaces)
m (Some wiki formatting)
Line 19: Line 19:
|descr= Returns the global namespace attached to user interface.
|descr= Returns the global namespace attached to user interface.


|s1= '''uiNamespace'''
|s1= [[uiNamespace]]


|r1= [[Namespace]]
|r1= [[Namespace]]


|x1= <code>[[uiNamespace]] [[setVariable]] ["LIB_interruptDisplay", _display];</code>
|x1= <sqf>   uiNamespace setVariable ["LIB_interruptDisplay", _display];</sqf>


|x2= <code>[[uiNamespace]] [[setVariable]] ["myVar", 46];
|x2= <sqf>
[[with]] [[uiNamespace]] [[do]] {
uiNamespace setVariable ["myVar", 46];
[[hint]] [[str]] myVar; //46
with uiNamespace do
{
hint str myVar; // 46
};
};
</code>
</sqf>


|seealso= ‎[[missionNamespace]], [[currentNamespace]], [[parsingNamespace]], [[profileNamespace]], [[localNamespace]], [[allVariables]], [[with]], [[do]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]]
|seealso= ‎[[missionNamespace]], [[currentNamespace]], [[parsingNamespace]], [[profileNamespace]], [[localNamespace]], [[allVariables]], [[with]], [[do]], [[ArmA:_Editing#Forward_Compatibility|Forward Compatibility]]
}}
}}

Revision as of 22:05, 18 April 2022

Hover & click on the images for description

Description

Description:
Returns the global namespace attached to user interface.
Groups:
NamespacesVariablesGUI Control

Syntax

Syntax:
uiNamespace
Return Value:
Namespace

Examples

Example 1:
uiNamespace setVariable ["LIB_interruptDisplay", _display];
Example 2:
uiNamespace setVariable ["myVar", 46]; with uiNamespace do { hint str myVar; // 46 };

Additional Information

See also:
missionNamespacecurrentNamespaceparsingNamespaceprofileNamespacelocalNamespaceallVariableswithdoForward Compatibility

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