isClass: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(upd. links)
m (upd. link)
Line 17: Line 17:


Result is true   
Result is true   
| [[configFile]], [[config/name]], [[configName]], [[count config]], [[getArray]], [[getText]], [[getNumber]], [[inheritsFrom]], [[isArray]], [[isNumber]], [[isText]], [[select config]] |= See also
| [[configFile]], [[config/name]], [[configName]], [[count]], [[getArray]], [[getText]], [[getNumber]], [[inheritsFrom]], [[isArray]], [[isNumber]], [[isText]], [[select config]] |= See also


}}
}}

Revision as of 15:51, 15 June 2010

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Check if config entry represents config class.
Groups:
Uncategorised

Syntax

Syntax:
Boolean = isClass config
Parameters:
config: Config
Return Value:
Boolean

Examples

Example 1:
_ok = isClass (configFile >> "CfgVehicles") Result is true

Additional Information

See also:
configFileconfig/nameconfigNamecountgetArraygetTextgetNumberinheritsFromisArrayisNumberisTextselect config

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

Posted on March 2, 2007 - 01:17
Kronzky
This command allows you to check for the presence of an addon. isClass (configFile >> "cfgVehicles" >> "MyCustomCar") will return true if the addon "MyCustomCar" is installed, and false if it is not installed. You will have to know under which class the addon is categorized (in this case "cfgVehicles") to be able to use the right config path.

Bottom Section