grpNull: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *('''[a-zA-Z0-9]+''') \|r1=" to " \|s1= $1 |r1=")
m (Some wiki formatting)
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| ofp
|game1= ofp
|1.00
|version1= 1.00


|game2= ofpe
|game2= ofpe
Line 24: Line 24:
|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>


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


|r1= [[Group]]
|r1= [[Group]]


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


|seealso= [[controlNull]], [[displayNull]], [[locationNull]], [[objNull]], [[taskNull]], [[teamMemberNull]], [[scriptNull]], [[configNull]], [[typeName]], [[isNull]]
|x2= <sqf>str grpNull; // <NULL-group></sqf>
 
|seealso= [[controlNull]] [[displayNull]] [[locationNull]] [[objNull]] [[taskNull]] [[teamMemberNull]] [[scriptNull]] [[configNull]] [[typeName]] [[isNull]]
}}
}}
{{GameCategory|arma1|Scripting Commands}}
{{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