ConTime Function (DWord, DWord, DWord) | |
Format a set of numbers representing an hour, minute, and second as a time string.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION ConTime(
dwHour AS DWORD,
dwMinute AS DWORD,
dwSeconds AS DWORD
) AS STRING
public static string ConTime(
uint dwHour,
uint dwMinute,
uint dwSeconds
)
Request Example
View SourceParameters
- dwHour
- Type: DWord
The number of hours, up to 23. - dwMinute
- Type: DWord
The number of minutes, up to 59. - dwSeconds
- Type: DWord
The number of minutes, up to 59.
Return Value
Type:
String
A (military) time that corresponds to the passed arguments in the format HH:MO:SS without AM/PM notation
Remarks Examples
These examples illustrate ConTime():
1? ConTime(10, 59, 59)
2? ConTime(22, 59, 59)
See Also