grpNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:Scripting Commands OFP 1.[4-9]{2}(\|(\{\{uc:\{\{PAGENAME\}\}\}\}|#|[A-Z]+))?\]\] " to "")
m (Some wiki formatting)
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|version1= 1.00


|1.00
|game2= ofpe
|version2= 1.00
 
|game3= arma1
|version3= 1.00
 
|game4= arma2
|version4= 1.00
 
|game5= arma2oa
|version5= 1.50
 
|game6= tkoh
|version6= 1.00
 
|game7= arma3
|version7= 0.50


|gr1= Groups
|gr1= Groups


| A non-existing [[Group]]. To compare non-existent groups use [[isNull]] or [[isEqualTo]]:
|descr= A non-existing [[Group]]. To compare non-existent groups use [[isNull]] or [[isEqualTo]]:
* <tt>[[grpNull]] <nowiki>==</nowiki> [[grpNull]]; // false</tt>
<sqf>
* <tt>[[isNull]] [[grpNull]]; // true</tt>
grpNull == grpNull; // false
* <tt>[[grpNull]] [[isEqualTo]] [[grpNull]]; // true</tt>
isNull grpNull; // true
grpNull isEqualTo grpNull; // true
</sqf>


|'''grpNull'''
|s1= [[grpNull]]


| [[Group]]
|r1= [[Group]]
| x1 = <code>![[isNull]] [[grpNull]]; // false</code>
| x2 = <code>[[str]] [[grpNull]]; // <NULL-group></code>


|seealso= [[controlNull]], [[displayNull]], [[locationNull]], [[objNull]], [[taskNull]], [[teamMemberNull]], [[scriptNull]], [[configNull]], [[typeName]], [[isNull]]
|x1= <sqf>!isNull grpNull; // false</sqf>
}}


|x2= <sqf>str grpNull; // <NULL-group></sqf>


{{GameCategory|arma1|Scripting Commands}}
|seealso= [[controlNull]] [[displayNull]] [[locationNull]] [[objNull]] [[taskNull]] [[teamMemberNull]] [[scriptNull]] [[configNull]] [[typeName]] [[isNull]]
{{GameCategory|arma2|Scripting Commands}}
}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Latest revision as of 14:17, 13 May 2022

Hover & click on the images for description

Description

Description:
A non-existing Group. To compare non-existent groups use isNull or isEqualTo:
grpNull == grpNull; // false isNull grpNull; // true grpNull isEqualTo grpNull; // true
Groups:
Groups

Syntax

Syntax:
grpNull
Return Value:
Group

Examples

Example 1:
!isNull grpNull; // false
Example 2:
str grpNull; // <NULL-group>

Additional Information

See also:
controlNull displayNull locationNull objNull taskNull teamMemberNull scriptNull configNull typeName isNull

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