AlignmentDesignSpeeds Property |
Gets the Alignment design speed collection.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic DesignSpeedCollection DesignSpeeds { get; }
Public ReadOnly Property DesignSpeeds As DesignSpeedCollection
Get
public:
property DesignSpeedCollection^ DesignSpeeds {
DesignSpeedCollection^ get ();
}
Property Value
DesignSpeedCollection
Example1
2DesignSpeed myDesignSpeed = myAlignment.DesignSpeeds.Add(0, 45);
3myDesignSpeed.Comment = "Straigtaway";
4
5myDesignSpeed = myAlignment.DesignSpeeds.Add(430, 30);
6myDesignSpeed.Comment = "Start of curve";
7
8myDesignSpeed = myAlignment.DesignSpeeds.Add(1427.131, 35);
9myDesignSpeed.Comment = "End of curve";
See Also