AlignmentDesignSpeeds Property

Gets the Alignment design speed collection.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public DesignSpeedCollection DesignSpeeds { get; }

Property Value

DesignSpeedCollection
Example
C#
1// Starting at station 0 + 00.00
2DesignSpeed myDesignSpeed = myAlignment.DesignSpeeds.Add(0, 45);
3myDesignSpeed.Comment = "Straigtaway";
4// Starting at station 4 + 30.00
5myDesignSpeed = myAlignment.DesignSpeeds.Add(430, 30);
6myDesignSpeed.Comment = "Start of curve";
7// Starting at station 14 + 27.131 to the end
8myDesignSpeed = myAlignment.DesignSpeeds.Add(1427.131, 35);
9myDesignSpeed.Comment = "End of curve";
See Also