|
GPS ToolKit.NET
Speed Property
Returns the current GPS speed.
Syntax
[Visual Basic]
object.Speed
[C#]
object.Speed
[C++]
object->Speed
Parameters
object
An object expression that evaluates to a GPSToolKit object.
Return Value
A Speed object containing the current GPS speed.
Remarks
If speed data is unavailable, the IsValid property of the returned Speed object is false.
Errors
None
Example
Dim speed As Speed
'Get speed
speed = myGPSToolKit.Speed
[C#]
// Get speed
Speed speed = myGPSToolKit.Speed;
[C++]
// Get speed
Speed *speed = myGPSToolKit->Speed;
See Also
Speed class | Position property |
TrueCourse property | PositionUpdate event
|