UtilHoursToHM(Double, String, String, Int32) Method
Convert hours to sexagesimal hours and minutes with supplied number of minute decimal places
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
public string HoursToHM(
double Hours,
string HrsDelim,
string MinDelim,
int MinDecimalDigits
)
Public Function HoursToHM (
Hours As Double,
HrsDelim As String,
MinDelim As String,
MinDecimalDigits As Integer
) As String
public:
virtual String^ HoursToHM(
double Hours,
String^ HrsDelim,
String^ MinDelim,
int MinDecimalDigits
) sealed
- Hours Double
- The hours value to convert
- HrsDelim String
- The delimiter string separating hours
- MinDelim String
- The delimiter string to append to the minutes part
- MinDecimalDigits Int32
- The number of digits after the decimal point on the minutes part
StringSexagesimal representation of hours input value as hours and minutes
If you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters.