LatLngIsValidLongitude Method (Int32, Int32, Double) |
doogal.co.uk Home
Determines whether the specified longitude is valid.
Namespace:
DotNetCoords
Assembly:
DotNetCoords (in DotNetCoords.dll) Version: 1.0.0.24 (1.0.0.24)
Syntaxpublic static bool IsValidLongitude(
int longitudeDegrees,
int longitudeMinutes,
double longitudeSeconds
)
Public Shared Function IsValidLongitude (
longitudeDegrees As Integer,
longitudeMinutes As Integer,
longitudeSeconds As Double
) As Boolean
public:
static bool IsValidLongitude(
int longitudeDegrees,
int longitudeMinutes,
double longitudeSeconds
)
static member IsValidLongitude :
longitudeDegrees : int *
longitudeMinutes : int *
longitudeSeconds : float -> bool
Parameters
- longitudeDegrees
- Type: SystemInt32
The degrees part of the longitude. - longitudeMinutes
- Type: SystemInt32
The minutes part of the longitude. - longitudeSeconds
- Type: SystemDouble
The seconds part of the longitude.
Return Value
Type:
Booleantrue if the longitude is valid; otherwise,
false.
See Also