|
GPS ToolKit.NET
GetGPSInfo Method
Returns information about the GPS and its software version.
Syntax
[Visual Basic]
object.GetGPSInfo()
[C#]
object.GetGPSInfo()
[C++]
object->GetGPSInfo()
Parameters
object
An object expression that evaluates to a GPSToolKit object.
Return Value
A GPSInfo object containing the information about the connected GPS.
Remarks
- This property returns data about the connected GPS, including product ID, software version, and product discription.
- When using the NMEA 0183 protocol, the software version and product IDs will be 0 and the product description will be "GPS Supporting NMEA 0183 Protocol".
Errors
None
Example
[Visual Basic]
Dim GPS As GPSInfo
GPS = myGPSToolKit.GetGPSInfo()
[C#]
GPSInfo GPS = myGPSToolKit.GetGPSInfo();
[C++]
GPSInfo *GPS = myGPSToolKit->GetGPSInfo();
|