UtilHoursToHMS(Double) Method |
Convert hours to sexagesimal hours, minutes, and seconds with default delimiters HH:MM:SS
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntaxpublic string HoursToHMS(
double Hours
)
Public Function HoursToHMS (
Hours As Double
) As String
public:
virtual String^ HoursToHMS(
double Hours
) sealed
Parameters
- Hours Double
- The hours value to convert
Return Value
StringSexagesimal representation of hours input value, hours, minutes and seconds
RemarksIf you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters.
This overload is not available through COM, please use
"HoursToHMS(ByVal Hours As Double, ByVal HrsDelim As String, ByVal MinDelim As String, ByVal SecDelim As String, ByVal SecDecimalDigits As Integer)"
with suitable parameters to achieve this effect.
See Also