grpNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
m (Some wiki formatting)
 
(78 intermediate revisions by 12 users not shown)
Line 1: Line 1:
back to [[Scripting_Reference#G|COMREF]]
{{RV|type=command


<h2 style="color:#000066"> '''grpNull'''</h2>
|game1= ofp
|version1= 1.00


|game2= ofpe
|version2= 1.00


'''Operand types:'''
|game3= arma1
|version3= 1.00


None
|game4= arma2
|version4= 1.00


'''Type of returned value:'''
|game5= arma2oa
|version5= 1.50


[[Group]]
|game6= tkoh
|version6= 1.00


'''Description:'''
|game7= arma3
|version7= 0.50


Non-existant group.
|gr1= Groups
This values is not equal to anything, not even to itself.


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


'''Example:'''
|s1= [[grpNull]]


[[group]] [[player]] [[==]] '''grpNull'''<br>
|r1= [[Group]]
Result is false
 
|x1= <sqf>!isNull grpNull; // false</sqf>
 
|x2= <sqf>str grpNull; // <NULL-group></sqf>
 
|seealso= [[controlNull]] [[displayNull]] [[locationNull]] [[objNull]] [[taskNull]] [[teamMemberNull]] [[scriptNull]] [[configNull]] [[typeName]] [[isNull]]
}}

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