BIS fnc showTime: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Fix example)
m (template:command argument fix)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Shows time gap between two dates. |= Description
| Shows time gap between two dates. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [startDate, endDate] call [[BIS_fnc_showTime]] |= Syntax
| [startDate, endDate] call [[BIS_fnc_showTime]] |SYNTAX=


|p1= startDate: [[Array]] in [[date]] format |= Parameter 1
|p1= startDate: [[Array]] in [[date]] format |PARAMETER1=


|p2= endDate: [[Array]] in [[date]] format |= Parameter 2
|p2= endDate: [[Array]] in [[date]] format |PARAMETER2=


| Resource Layer |= Return value
| Resource Layer |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 23: Line 23:
_dayStart [[set]] [4, 0]; {{codecomment|// set minutes to 0}}
_dayStart [[set]] [4, 0]; {{codecomment|// set minutes to 0}}
_now = [[date]];
_now = [[date]];
[_dayStart, _now] [[call]] [[BIS_fnc_showTime]];</code> |= Example 1
[_dayStart, _now] [[call]] [[BIS_fnc_showTime]];</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[date]], [[BIS_fnc_secondsToString]] |= See also
| [[date]], [[BIS_fnc_secondsToString]] |SEEALSO=
}}
}}



Revision as of 15:33, 7 April 2019

Hover & click on the images for description

Description

Description:
Shows time gap between two dates.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[startDate, endDate] call BIS_fnc_showTime
Parameters:
startDate: Array in date format
endDate: Array in date format
Return Value:
Resource Layer

Examples

Example 1:
_dayStart = date; _dayStart set [3, 0]; // set hours to 0 _dayStart set [4, 0]; // set minutes to 0 _now = date; [_dayStart, _now] call BIS_fnc_showTime;

Additional Information

See also:
dateBIS_fnc_secondsToString

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

Bottom Section