Creates a free Symmetric Parabola between two entities and the K value.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public ProfileParabolaSymmetric AddFreeSymmetricParabolaByK(
	uint previousEntityId,
	uint nextEntityId,
	VerticalCurveType curveType,
	double k
)
Visual Basic
Public Function AddFreeSymmetricParabolaByK ( _
	previousEntityId As UInteger, _
	nextEntityId As UInteger, _
	curveType As VerticalCurveType, _
	k As Double _
) As ProfileParabolaSymmetric
Visual C++
public:
ProfileParabolaSymmetric^ AddFreeSymmetricParabolaByK(
	unsigned int previousEntityId, 
	unsigned int nextEntityId, 
	VerticalCurveType curveType, 
	double k
)

Parameters

previousEntityId
Type: System..::..UInt32
The previous entity to attach to.
nextEntityId
Type: System..::..UInt32
The next entity to attach to.
curveType
Type: Autodesk.Civil.DatabaseServices..::..VerticalCurveType
The vertical curve type, crest or sag.
k
Type: System..::..Double
The K value.

Remarks

The parameter curveType is only applicable when the parabola is added between two ProfileParabolaSymmetric entities.

See Also