inheritsFrom: Difference between revisions
Jump to navigation
Jump to search
Dr Eyeball (talk | contribs) m (see also isKindOf) |
Killzone Kid (talk | contribs) (correction) |
||
Line 16: | Line 16: | ||
| [[Config]] |= Return value | | [[Config]] |= Return value | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|x1 = <code>_base = [[inheritsFrom]] ([[configFile]] [[gtgt|>>]] "CfgVehicles" [[gtgt|>>]] "Car");</code> Result is "LandVehicle" |= Example 1 | |x1 = <code>_base = [[inheritsFrom]] ([[configFile]] [[gtgt|>>]] "CfgVehicles" [[gtgt|>>]] "Car");</code> Result is [[Config]] entry for class "LandVehicle" |= Example 1 | ||
| [[configFile]], [[config/name]], [[configName]], [[count]], [[getArray]], [[getText]], [[getNumber]], [[isArray]], [[isClass]], [[isNumber]], [[isText]], [[select]], [[configHierarchy]], [[isKindOf]] |= See also | | [[configFile]], [[config/name]], [[configName]], [[count]], [[getArray]], [[getText]], [[getNumber]], [[isArray]], [[isClass]], [[isNumber]], [[isText]], [[select]], [[configHierarchy]], [[isKindOf]] |= See also |
Revision as of 15:18, 4 November 2016
Description
- Description:
- Returns base entry of config entry.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
_base = inheritsFrom (configFile >> "CfgVehicles" >> "Car");
Result is Config entry for class "LandVehicle"
Additional Information
- See also:
- configFileconfig/nameconfigNamecountgetArraygetTextgetNumberisArrayisClassisNumberisTextselectconfigHierarchyisKindOf
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 Apr 2, 2014 - 17:11
- ffur2007slx2_5
-
(A3 1.14)Use BIS_fnc_returnParents if a parents' collection of the given entry is needed.
[(configFile >> "CfgVehicles" >> "Land_Atm_02_F"),true ] call BIS_fnc_returnParents; //return: ["Land_Atm_02_F","House_Small_F","House_F","House","HouseBase","NonStrategic","Building","Static","All"]
Not all entries have parent, and please differ parents from path.inheritsFrom (configFile >> "CfgUIColors" >> "IGUI" >> "Presets" >> "PresetA1" >> "Variables"); //return: Nothing