Creates a Fix object.

Namespace: FlightPlan
Assembly: FlightPlanXML (in FlightPlanXML.dll) Versión: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Fix(
	string id,
	string name,
	string desc,
	GPSCoords lat,
	GPSCoords lon
)
Visual Basic
Public Sub New ( _
	id As String, _
	name As String, _
	desc As String, _
	lat As GPSCoords, _
	lon As GPSCoords _
)
Visual C++
public:
Fix(
	String^ id, 
	String^ name, 
	String^ desc, 
	GPSCoords^ lat, 
	GPSCoords^ lon
)

Parameters

id
Type: System..::..String
A String. Fix identifier.
name
Type: System..::..String
A String. Name of the fix.
desc
Type: System..::..String
A String. Description of the fix.
lat
Type: FlightPlan..::..GPSCoords
A GPSCoords. Fix latitude.
lon
Type: FlightPlan..::..GPSCoords
A GPSCoords. Fix longitude.

See Also