Creates an RFLeg object.

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

Syntax

C#
public RFLeg(
	Stage stg,
	string id,
	Waypoint destination,
	string nextid,
	string previd,
	ContingencyList emergency,
	GPSCoords clat,
	GPSCoords clon,
	Leg..::..TurnDir direction
)
Visual Basic
Public Sub New ( _
	stg As Stage, _
	id As String, _
	destination As Waypoint, _
	nextid As String, _
	previd As String, _
	emergency As ContingencyList, _
	clat As GPSCoords, _
	clon As GPSCoords, _
	direction As Leg..::..TurnDir _
)
Visual C++
public:
RFLeg(
	Stage^ stg, 
	String^ id, 
	Waypoint^ destination, 
	String^ nextid, 
	String^ previd, 
	ContingencyList^ emergency, 
	GPSCoords^ clat, 
	GPSCoords^ clon, 
	Leg..::..TurnDir direction
)

Parameters

stg
Type: FlightPlan..::..Stage
Stage the leg belongs to.
id
Type: System..::..String
A String with the leg id.
destination
Type: FlightPlan..::..Waypoint
Destination Waypoint.
nextid
Type: System..::..String
A String with the id of the next leg.
previd
Type: System..::..String
A String with the id of the previous leg.
emergency
Type: FlightPlan..::..ContingencyList
A FlightPlan to be executed in case of emergency.
clat
Type: FlightPlan..::..GPSCoords
A GPSCoords with the latitude of the turn center.
clon
Type: FlightPlan..::..GPSCoords
A GPSCoords with the longitude of the turn center.
direction
Type: FlightPlan..::..Leg..::..TurnDir
A Leg..::..TurnDir with the turn direction.

See Also