Sets or gets the start station for the transition.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public double StartStation { get; set; }
Visual Basic
Public Property StartStation As Double
	Get
	Set
Visual C++
public:
property double StartStation {
	double get ();
	void set (double value);
}

Remarks

1: Changing the EndStation value will affect the next region's start station and the length. 2: Changing the EndStation value will affect the previous region's end station and the length. 3: Changing the EndStation will not modify the length of the transition.

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when:
  1. the value is less than or equal to the start station of the previous region.
  2. the value is greater than or equal to the end station of the next region.
  3. no solution found for the input value according to the transition's length and other constraints.

See Also