BIS fnc toUpperDisplayTexts: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Function " to "{{RV|type=function ")
m (Text replacement - "(\|[pr][0-9]+ *= *[^-]+) *- *C([a-eg-z])" to "$1 - c$2")
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{RV|type=function
{{RV|type=function


| arma3
|game1= arma3
|version1= 1.00


|1.00
|gr1= GUI
 
|descr= Converts text of selected classes in one display to upper-case except classes with name '''PlayersName'''. Also searches inside [[CT_CONTROLS_GROUP]]s.
 
|s1= [displayClass, controlClasses, blacklist] call [[BIS_fnc_toUpperDisplayTexts]]


|gr1= GUI
|r1= [[Nothing]]


| <pre>/*
|p1= displayClass: [[String]] - class name of the display to manipulate


Description:
|p2= controlClasses: [[Array]] of [[String]]s - class names of parents of controls you want to turn upper case (e. g. ["RscText", "RscTitle"])
* Converts text of selected classes in one display to upper-case.
* Searches inside Controls class of the display. Looks inside RscControlsGroup as well.
* Doesn't toUpper class with name "PlayersName" (TODO - Maybe make it parameter as well).


Parameter(s):
|p3= blacklist: [[Array]] of [[String]]s - (Optional: Default []) Class names of controls you don't want to turn upper case (e. g. ["CA_VehicleAuthor"])
0: STRING - Class name of the display (e. g. "RscDisplayOptionsAudio").
1: ARRAY OF STRINGS - Class names of parents of controls you want to toUpper (e. g. ["RscText", "RscTitle"]).
2 (Optional): ARRAY OF STRINGS - Class names of controls you don't want toUpper (e. g. ["CA_VehicleAuthor"] - suitable for toUppering all RscTexts except CA_VehicleAuthor).


Returns:
|x1= <sqf>["RscDisplayOptionsAudio", ["RscText"]] call BIS_fnc_toUpperDisplayTexts;</sqf>
NOTHING
*/
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small>| <!-- [] call [[BIS_fnc_toUpperDisplayTexts]]; -->|p1=||x1= <code></code>


|seealso=
|seealso= [[BIS_fnc_displayName]]
}}
}}

Latest revision as of 14:59, 8 November 2023

Hover & click on the images for description

Description

Description:
Converts text of selected classes in one display to upper-case except classes with name PlayersName. Also searches inside CT_CONTROLS_GROUPs.
Execution:
call
Groups:
GUI

Syntax

Syntax:
[displayClass, controlClasses, blacklist] call BIS_fnc_toUpperDisplayTexts
Parameters:
displayClass: String - class name of the display to manipulate
controlClasses: Array of Strings - class names of parents of controls you want to turn upper case (e. g. ["RscText", "RscTitle"])
blacklist: Array of Strings - (Optional: Default []) Class names of controls you don't want to turn upper case (e. g. ["CA_VehicleAuthor"])
Return Value:
Nothing

Examples

Example 1:
["RscDisplayOptionsAudio", ["RscText"]] call BIS_fnc_toUpperDisplayTexts;

Additional Information

See also:
BIS_fnc_displayName

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