Click or drag to resize

UtilDegreesToHMS Method (Double, String, String)

Convert degrees to sexagesimal hours, minutes, and seconds with the default second delimiter SS (null string)

Namespace:  ASCOM.Utilities
Assembly:  ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 3351c4f3fa64146a7efd5b51ed4591e32a0a5484
Syntax
public string DegreesToHMS(
	double Degrees,
	string HrsDelim,
	string MinDelim
)

Parameters

Degrees
Type: SystemDouble
The degrees value to convert
HrsDelim
Type: SystemString
The delimiter string separating hours and minutes
MinDelim
Type: SystemString
The delimiter string separating minutes and seconds

Return Value

Type: String
Sexagesimal representation of degrees input value, as 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.

This overload is not available through COM, please use "DegreesToHMS(ByVal Degrees 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