ArrivedAtDest Property
Returns the current destination arrival status.
Syntax
Visual Basic
object.ArrivedAtDest
Visual C++
object.GetArrivedAtDest()
| Part
| Description |
| object |
An object expression that evaluates to a GPS ToolKit object. |
Example
Visual Basic
Dim arrived As Boolean
'Get arrival status
arrived = myGPSToolKit.ArrivedAtDest
Visual C++
_variant_t vtArrived;
// Get arrival status
vtArrived = m_myGPSToolKit.GetArrivedAtDest();
bool arrived = (bool)vtArrived;
Remarks
None
Default
Empty (VT_EMPTY)
Returns
A VARIANT (type VT_BOOL/bool) containing the destination arrival status.
A value of true indicates that the GPS has arrived at the destination waypoint. False indicates an
the GPS has not yet arrived at the destination waypoint.
Errors
None
See Also
DestWptID property, DestWptLatitude property,
DestWptLongitude property, DestClosingVelocity property, NavUpdate event
|