objNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
No edit summary
Line 17: Line 17:
____________________________________________________________________________________________
____________________________________________________________________________________________


|  |= See also
| [[grpNull]], [[locationNull]], [[taskNull]], [[controlNull]], [[displayNull]], [[isNull]] |= See also


}}
}}
Line 24: Line 24:
<dl class="command_description">
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
You can not compare these values, but you can check whether they are null:
hint str isNull objNull // true


<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>
Array1 = [objNull];
Array1 = Array1 - [objNull];
Array1 == [];
objNull is equal to itself in this situation.


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>

Revision as of 22:59, 3 April 2010

Hover & click on the images for description

Description

Description:
A non-existing Object. This value is not equal to anything, including itself.
Groups:
Uncategorised

Syntax

Syntax:
Object = objNull
Return Value:
Object

Examples

Examples:
Example needed

Additional Information

See also:
grpNulllocationNulltaskNullcontrolNulldisplayNullisNull

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

You can not compare these values, but you can check whether they are null: hint str isNull objNull // true

Bottom Section