configNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Bot: Reverted to revision 95135 by killzone_kid on 2016-03-26T17:50:23Z)
m (template:command argument fix)
Line 10: Line 10:
* <tt>[[configNull]] <nowiki>==</nowiki> [[configNull]]; // true</tt>
* <tt>[[configNull]] <nowiki>==</nowiki> [[configNull]]; // true</tt>
* <tt>[[isNull]] [[configNull]]; // true</tt>
* <tt>[[isNull]] [[configNull]]; // true</tt>
* <tt>[[configNull]] [[isEqualTo]] [[configNull]]; // true</tt> |= Description
* <tt>[[configNull]] [[isEqualTo]] [[configNull]]; // true</tt> |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''configNull''' |= Syntax
| '''configNull''' |SYNTAX=


| [[Config]] |= Return value
| [[Config]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
|x1= <code>_config = [[missionNamespace]] [[getVariable]] ["myConfig", [[configNull]]];</code>|=
|x1= <code>_config = [[missionNamespace]] [[getVariable]] ["myConfig", [[configNull]]];</code>|=
Line 21: Line 21:
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[controlNull]], [[displayNull]], [[grpNull]], [[locationNull]], [[objNull]], [[taskNull]], [[teamMemberNull]], [[scriptNull]], [[typeName]], [[isNull]]  |= See also
| [[controlNull]], [[displayNull]], [[grpNull]], [[locationNull]], [[objNull]], [[taskNull]], [[teamMemberNull]], [[scriptNull]], [[typeName]], [[isNull]]  |SEEALSO=


}}
}}

Revision as of 15:35, 7 April 2019

Hover & click on the images for description

Description

Description:
A non-existing Config.
Groups:
Uncategorised

Syntax

Syntax:
configNull
Return Value:
Config

Examples

Example 1:
_config = missionNamespace getVariable ["myConfig", configNull];
Example 2:
str configNull; // ""

Additional Information

See also:
controlNulldisplayNullgrpNulllocationNullobjNulltaskNullteamMemberNullscriptNulltypeNameisNull

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

Notes

Bottom Section