Design |
The DesignSpeed type exposes the following members.
| Name | Description | |
|---|---|---|
| Comment | Gets and sets the DesignSpeed comment. | |
| SpeedNumber | Gets the DesignSpeed number. | |
| Station | Gets and sets the DesignSpeed Station. | |
| Value | Gets and sets the DesignSpeed value. |
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";