UtilHoursToHMS(Double, String, String, String, Int32) Method

Convert hours to sexagesimal hours, minutes, and seconds with specified number of second decimal places

Definition

Namespace: ASCOM.Utilities
Assembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
C#
public string HoursToHMS(
	double Hours,
	string HrsDelim,
	string MinDelim,
	string SecDelim,
	int SecDecimalDigits
)

Parameters

Hours  Double
The hours value to convert
HrsDelim  String
The delimiter string separating hours and minutes
MinDelim  String
The delimiter string separating minutes and seconds
SecDelim  String
The delimiter string to append to the seconds part
SecDecimalDigits  Int32
The number of digits after the decimal point on the seconds part

Return Value

String
Sexagesimal representation of hours input value, hours, minutes and seconds

Remarks

If you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters.

See Also