|
GPS ToolKit.NET
IsGPSConnected Property
Returns the state of the GPS connection.
Syntax
[Visual Basic]
object.IsGPSConnected
[C#]
object.IsGPSConnected
[C++]
object->IsGPSConnected
Parameters
object
An object expression that evaluates to a GPSToolKit object.
Return Value
The boolean value true if there is an active GPS connection, false otherwise.
Default
False
Remarks
This property is read-only.
Errors
None
Example
[Visual Basic]
Dim isConnected As Boolean
isConnected = myGPSToolKit.IsGPSConnected
[C#]
Boolean isConnected = myGPSToolKit.IsGPSConnected;
[C++]
Boolean isConnected = myGPSToolKit->IsGPSConnected;
See Also
Open method | Close method | IsPortOpen property
|