Creates an AlignmentSpiral entity defined by a previous entity, a radius, a length, a clockwise indicator and a spiral definition.

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

Syntax

C#
public AlignmentSpiral AddFloatSpiral(
	int previousEntityId,
	double radius,
	double length,
	bool isClockwise,
	SpiralType spiralDefinition
)
Visual Basic
Public Function AddFloatSpiral ( _
	previousEntityId As Integer, _
	radius As Double, _
	length As Double, _
	isClockwise As Boolean, _
	spiralDefinition As SpiralType _
) As AlignmentSpiral
Visual C++
public:
AlignmentSpiral^ AddFloatSpiral(
	int previousEntityId, 
	double radius, 
	double length, 
	bool isClockwise, 
	SpiralType spiralDefinition
)

Parameters

previousEntityId
Type: System..::..Int32
Previous entity identifier.
radius
Type: System..::..Double
End radius of the spiral entity.
length
Type: System..::..Double
Length of spriral entity.
isClockwise
Type: System..::..Boolean
Specifies whether spiral entity is created clockwise (True) or counter-clockwise (False).
spiralDefinition
Type: Autodesk.Civil..::..SpiralType
Specifies the spiral definition type.

See Also