|
GPS ToolKit.NET
SatelliteUpdate Event
Fired when new satellite information has been received from the GPS.
Syntax
[Visual Basic]
Private Sub myGPSToolKit_SatelliteUpdate(ByVal sender As Object, ByVal e As SciCom.GPSToolKit.SatelliteUpdateEventArgs) Handles myGPSToolKit.OnSatelliteUpdate
[C#]
private void SatelliteUpdate(object sender, SciCom.GPSToolKit.SatelliteUpdateEventArgs e)
[C++]
System::Void SatelliteUpdate(System::Object * sender, SciCom::GPSToolKit::SatelliteUpdateEventArgs * e)
Parameters
sender
A reference to the GPSToolKit object.
e
The arguments associated with the event.
Arguments
Satellites
A SatelliteCollection object containing a collection of satellites in view of the GPS.
See Also
SatelliteCollection class, Satellite class
|