BIS fnc alignTabs: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
m (Text replacement - "<code>([^<]+)<\/code>" to "<sqf>$1</sqf>")
 
(42 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{RV|type=function


{{Function|= Comments
|game1= arma3
____________________________________________________________________________________________
|version1= 1.00


| arma3 |= Game name
|gr1= Strings


|1.00|= Game version
|descr= Align two columns divided by tabs. A tab counts for 8 characters.
____________________________________________________________________________________________


| <pre>/*
|s1= array call [[BIS_fnc_alignTabs]]


Description:
|p1= array: [[Array]] - in format
Align two columns divided by tabs
<sqf>[
["left column 1", "right column 1"],
["left column 2", "right column 2"],
// ...
]</sqf>


Parameter(s):
|r1= [[String]]
0: ARRAY in format
[
["left column 1","righ column 1"],
["left column 2","righ column 2"],
...
]


Returns:
|x1= <sqf>[
STRING
["Player:", str player],
*/
["Name:", name player],
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
["Type:", typeOf player],
____________________________________________________________________________________________
["Location:", str getPosATL player],
 
["Direction:", str getDir player]
| <!-- [] call [[BIS_fnc_alignTabs]]; --> |= Syntax
] call BIS_fnc_alignTabs;</sqf>
 
|p1= |= Parameter 1
 
| |= Return value
____________________________________________________________________________________________
 
|x1= <code></code> |=
____________________________________________________________________________________________
 
| |= See also


|seealso=
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
<!-- Note Section BEGIN -->
<!-- Note Section END -->
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Strings|{{uc:alignTabs}}]]
[[Category:Functions|{{uc:alignTabs}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:alignTabs}}]]

Latest revision as of 18:11, 13 July 2022

Hover & click on the images for description

Description

Description:
Align two columns divided by tabs. A tab counts for 8 characters.
Execution:
call
Groups:
Strings

Syntax

Syntax:
array call BIS_fnc_alignTabs
Parameters:
array: Array - in format
[ ["left column 1", "right column 1"], ["left column 2", "right column 2"], // ... ]
Return Value:
String

Examples

Example 1:
[ ["Player:", str player], ["Name:", name player], ["Type:", typeOf player], ["Location:", str getPosATL player], ["Direction:", str getDir player] ] call BIS_fnc_alignTabs;

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