Creates an AlignmentSpiral entity defined by a radius, a length, a next entity, 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(
	double radius,
	double length,
	int nextEntityId,
	bool isClockwise,
	SpiralType spiralDefinition
)
Visual Basic
Public Function AddFloatSpiral ( _
	radius As Double, _
	length As Double, _
	nextEntityId As Integer, _
	isClockwise As Boolean, _
	spiralDefinition As SpiralType _
) As AlignmentSpiral
Visual C++
public:
AlignmentSpiral^ AddFloatSpiral(
	double radius, 
	double length, 
	int nextEntityId, 
	bool isClockwise, 
	SpiralType spiralDefinition
)

Parameters

radius
Type: System..::..Double
Start radius of the Spiral entity.
length
Type: System..::..Double
Length of spriral entity.
nextEntityId
Type: System..::..Int32
Next entity identifier.
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