Creates a HFLeg object.

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

Syntax

C#
public HFLeg(
	Stage stg,
	string id,
	Waypoint destination,
	string nextid,
	string previd,
	ContingencyList emergency,
	double cour,
	Leg..::..TurnDir dir,
	double d1,
	double d2,
	int upperBound,
	string condid
)
Visual Basic
Public Sub New ( _
	stg As Stage, _
	id As String, _
	destination As Waypoint, _
	nextid As String, _
	previd As String, _
	emergency As ContingencyList, _
	cour As Double, _
	dir As Leg..::..TurnDir, _
	d1 As Double, _
	d2 As Double, _
	upperBound As Integer, _
	condid As String _
)
Visual C++
public:
HFLeg(
	Stage^ stg, 
	String^ id, 
	Waypoint^ destination, 
	String^ nextid, 
	String^ previd, 
	ContingencyList^ emergency, 
	double cour, 
	Leg..::..TurnDir dir, 
	double d1, 
	double d2, 
	int upperBound, 
	String^ condid
)

Parameters

stg
Type: FlightPlan..::..Stage
Stage the leg belongs to.
id
Type: System..::..String
A String with the leg id.
destination
Type: FlightPlan..::..Waypoint
A Waypoint with the initial fix of the holding pattern.
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.
cour
Type: System..::..Double
A Double with the azimuth angle indicating orientation of the holding pattern.
dir
Type: FlightPlan..::..Leg..::..TurnDir
Turn direction.
d1
Type: System..::..Double
A Double with the distance between turn centers.
d2
Type: System..::..Double
A Double with the turn diameter.
upperBound
Type: System..::..Int32

[Missing <param name="upperBound"/> documentation for "M:FlightPlan.HFLeg.#ctor(FlightPlan.Stage,System.String,FlightPlan.Waypoint,System.String,System.String,FlightPlan.ContingencyList,System.Double,FlightPlan.Leg.TurnDir,System.Double,System.Double,System.Int32,System.String)"]

condid
Type: System..::..String

[Missing <param name="condid"/> documentation for "M:FlightPlan.HFLeg.#ctor(FlightPlan.Stage,System.String,FlightPlan.Waypoint,System.String,System.String,FlightPlan.ContingencyList,System.Double,FlightPlan.Leg.TurnDir,System.Double,System.Double,System.Int32,System.String)"]

See Also