|
GPS ToolKit.NET
ExtendedFixData.TimeSinceLastDGPSUpdate Property
Returns the time since the last DGPS update in seconds.
Syntax
[Visual Basic]
object.TimeSinceLastDGPSUpdate
[C#]
object.TimeSinceLastDGPSUpdate
[C++]
object->TimeSinceLastDGPSUpdate
Parameters
object
An object expression that evaluates to an ExtendedFixData object.
Return Value
A TimeSpan containing the time since last DGPS update in seconds.
Remarks
If no time since last DGPS update is available the value is 0
Default
A TimeSpan with value 0
Errors
None
Example
[Visual Basic]
Dim timeSinceDGPSUpdate As TimeSpan
'Get time since last DGPS update
timeSinceDGPSUpdate = myGPSToolKit.ExtendedFixData.TimeSinceLastDGPSUpdate
[C#]
TimeSpan timeSinceDGPSUpdate;
// Get time since last DGPS update
timeSinceDGPSUpdate = myGPSToolKit.ExtendedFixData.TimeSinceLastDGPSUpdate;
[C++]
TimeSpan timeSinceDGPSUpdate;
// Get time since last DGPS update
timeSinceDGPSUpdate = myGPSToolKit->ExtendedFixData->TimeSinceLastDGPSUpdate;
See Also
ExtendedFixData property, DGPSRefStationID property
|