UtilDegreesToHMS(Double, String, String, String, Int32) Method |
Convert degrees to sexagesimal hours, minutes, and seconds with the specified number of second decimal places
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntaxpublic string DegreesToHMS(
double Degrees,
string HrsDelim,
string MinDelim,
string SecDelim,
int SecDecimalDigits
)
Public Function DegreesToHMS (
Degrees As Double,
HrsDelim As String,
MinDelim As String,
SecDelim As String,
SecDecimalDigits As Integer
) As String
public:
virtual String^ DegreesToHMS(
double Degrees,
String^ HrsDelim,
String^ MinDelim,
String^ SecDelim,
int SecDecimalDigits
) sealed
Parameters
- Degrees Double
- The degrees 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
StringSexagesimal representation of degrees input value, as hours, minutes, and seconds
RemarksIf you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters.
See Also