BIS fnc 3DENDiagFonts: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " " to " ") |
m (Text replacement - "\[\[[cC]ategory:[fF]unctions\|\{\{uc:[a-z 0-9 A-Z_]*\}\}\]\]" to "") |
||
Line 38: | Line 38: | ||
[[Category:{{Name|arma3}}: Functions|{{uc:3DENDiagFonts}}]] | [[Category:{{Name|arma3}}: Functions|{{uc:3DENDiagFonts}}]] | ||
Revision as of 09:40, 2 February 2021
Description
- Description:
- Description needed
- Execution:
- call
- Groups:
- Eden Editor
Syntax
- Syntax:
- Syntax needed
- Parameters:
- fontID: Number
- Return Value:
- Return value needed
Examples
- Example 1:
2 call BIS_fnc_3DENDiagFonts;
Additional Information
- See also:
- See also needed
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
- Posted on November 1, 2020 - 15:36 (UTC)
- 7erra
-
Code used to generate list:
_version = str(productVersion select 2); _version = format["%1.%2", _version select [0,1], _version select [1, count _version]]; _firstLine = format ["Fonts for {{GVI|arma3|%1}}:
", _version]; _s = [_firstLine, "<ol start{{=}}""0"">"]; _cfgFonts = configProperties [configfile >> "cfgfontfamilies","isclass _x"]; _cfgFonts apply { _s pushBack format["<li>%1</li>", configName _x]; }; _s pushBack "</ol>"; _s = _s joinString endl; copyToClipboard _s; _s