Creates a floating Symmetric Parabola defined by an entity to attach to, a pass-through point and the grade value at the end point.

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

Syntax

C#
public ProfileParabolaSymmetric AddFloatingSymmetricParabolaByThroughPointAndGrade(
	uint attachEntityId,
	Point2d passPoint,
	double grade,
	EntityAttachType attachType
)
Visual Basic
Public Function AddFloatingSymmetricParabolaByThroughPointAndGrade ( _
	attachEntityId As UInteger, _
	passPoint As Point2d, _
	grade As Double, _
	attachType As EntityAttachType _
) As ProfileParabolaSymmetric
Visual C++
public:
ProfileParabolaSymmetric^ AddFloatingSymmetricParabolaByThroughPointAndGrade(
	unsigned int attachEntityId, 
	Point2d passPoint, 
	double grade, 
	EntityAttachType attachType
)

Parameters

attachEntityId
Type: System..::..UInt32
The entity to attach to.
passPoint
Type: Point2d
The pass-through point.
grade
Type: System..::..Double
The grade value at the end point.
attachType
Type: Autodesk.Civil.DatabaseServices..::..EntityAttachType
Specifies whether you want to append or prepend the new entity.

Remarks

Point2d.X and Point2d.Y are the profile's station and elevation respectively.

See Also