Adds an Autodesk.Civil.DatabaseServices.ProfilePVI with a type of ProfileEntityType.ParabolaAsymmetric to the collection.

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

Syntax

C#
public ProfilePVI AddPVIAsymParabola(
	double station,
	double elevation,
	double tangentLen1,
	double tangentLen2
)
Visual Basic
Public Function AddPVIAsymParabola ( _
	station As Double, _
	elevation As Double, _
	tangentLen1 As Double, _
	tangentLen2 As Double _
) As ProfilePVI
Visual C++
public:
ProfilePVI^ AddPVIAsymParabola(
	double station, 
	double elevation, 
	double tangentLen1, 
	double tangentLen2
)

Parameters

station
Type: System..::..Double
The station value for the new PVI.
elevation
Type: System..::..Double
The elevation value for the new PVI.
tangentLen1
Type: System..::..Double
The lentgh value of the first tangent for the new PVI.
tangentLen2
Type: System..::..Double
The lentgh value of the second tangent for the new PVI.

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when:
  1. The value of the new PVI station is less than the start station or greater than the end station of the profile's corresponding alignment.
  2. Cannot add an Autodesk.Civil.DatabaseServices.ProfilePVI that's type is ParabolaAsymmetric with the given station, elevation and radius.

See Also