DGPSRefStationID Property
Returns the ID of the current DGPS reference station.
Syntax
Visual Basic
object.DGPSRefStationID
Visual C++
object.GetDGPSRefStationID()
| Part
| Description |
| object |
An object expression that evaluates to a GPS ToolKit object. |
Example
Visual Basic
Dim refStationID As Long
'Get station ID
refStationID = myGPSToolKit.DGPSRefStationID
Visual C++
_variant_t vtRefStationID;
// Get station ID
vtRefStationID = m_myGPSToolKit.GetDGPSRefStationID();
long refStationID = (long)vtRefStationID;
Remarks
None
Default
Empty (VT_EMPTY)
Returns
A VARIANT (type VT_I4/long) containing the ID of the DGPS reference station.
If no DGPS reference station ID is reported the variable will be empty (type VT_EMPTY).
Errors
None
See Also
FixQuality property, TimeSinceLastDGPSUpdate property
|