|
GPS ToolKit.NET
PositionUpdate Event
Fired when the new position information has been received from the GPS.
Syntax
[Visual Basic]
Private Sub myGPSToolKit_PositionUpdate(ByVal sender As Object, ByVal e As SciCom.GPSToolKit.PositionUpdateEventArgs) Handles myGPSToolKit.PositionUpdate
[C#]
private void PositionUpdate(object sender, SciCom.GPSToolKit.PositionUpdateEventArgs e)
[C++]
System::Void PositionUpdate(System::Object * sender, SciCom::GPSToolKit::PositionUpdateEventArgs * e)
Parameters
sender
A reference to the GPSToolKit object.
e
The arguments associated with the event.
Arguments
ExtendedFixData
An ExtendedFixData object containing information about the fix status, estimated precision, and supplemental data
LastPositionUpdateTime
A DateTime object containing the date and time that the GPS position was updated.
Position
A Position object containing the current GPS position.
Speed
A Speed object containing the current GPS speed.
TrueCourse
An Angle object containing the current GPS true course
See Also
ExtendedFixData class | Position class | Speed class |
Angle class
|