isText: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[[cC]ategory:[sS]cripting [cC]ommands\|[a-z A-Z 0-9_]+\]\]" to "")
m (Some wiki formatting)
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma1
|game1= arma1
|version1= 1.00
 
|game2= arma2
|version2= 1.00
 
|game3= arma2oa
|version3= 1.50
 
|game4= tkoh
|version4= 1.00
 
|game5= arma3
|version5= 0.50


|gr1= Config
|gr1= Config


|1.00
|descr= Checks if config entry represents a text value.


| Check if config entry represents text.
|s1= [[isText]]  config


| [[Boolean]] <nowiki>=</nowiki> '''isText''' config
|p1= config: [[Config]]
|p1= config: [[Config]]
| [[Boolean]]
|x1 = <code> _ok <nowiki>=</nowiki> '''isText''' (configFile >> "CfgVehicles") </code>


Result is false 
|r1= [[Boolean]]
| [[configFile]], [[config / name]], [[configName]], [[count]], [[getArray]], [[getText]], [[getNumber]], [[inheritsFrom]], [[isArray]], [[isClass]], [[isNumber]], [[select]]
 
}}
|x1= <sqf>_isText = isText (configFile >> "CfgVehicles") // false</sqf>


|x2= <sqf>_isText = isText (configFile >> "CfgVehicles" >> "B_MRAP_01_F" >> "displayName") // true</sqf>


{{GameCategory|arma1|Scripting Commands}}
|seealso= [[getText]] [[getNumber]] [[isArray]] [[isClass]] [[isNumber]]
{{GameCategory|arma2|Scripting Commands}}
}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Latest revision as of 17:18, 13 May 2022

Hover & click on the images for description

Description

Description:
Checks if config entry represents a text value.
Groups:
Config

Syntax

Syntax:
isText config
Parameters:
config: Config
Return Value:
Boolean

Examples

Example 1:
_isText = isText (configFile >> "CfgVehicles") // false
Example 2:
_isText = isText (configFile >> "CfgVehicles" >> "B_MRAP_01_F" >> "displayName") // true

Additional Information

See also:
getText getNumber isArray isClass isNumber

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