Gets the Alignment design speed collection.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public DesignSpeedCollection DesignSpeeds { get; } |
Visual Basic |
---|
Public ReadOnly Property DesignSpeeds As DesignSpeedCollection Get |
Visual C++ |
---|
public: property DesignSpeedCollection^ DesignSpeeds { DesignSpeedCollection^ get (); } |
Examples

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";