Gets or sets the end station of the region.

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

Syntax

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

Remarks

  1. Changing the EndStation value will resize the AlignmentRegion object.
  2. Changing the EndStation value will modify the StartStation of ExitTransition.
  3. Changing the EndStation value might affect the Length and StartStaion of the next region.

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when:
  1. The value is less than or equal to the start station of the region.
  2. For the end region, the value is outside of the alignment station limits.
  3. For other regions, the value is greater than or equal to the end station of the next region.
  4. No is solution found for the input value according to the transition's length and other constraints.
System..::..InvalidOperationException Thrown when:
  1. The RegionType of current region is AlignmentRegionType.Automatic.
  2. The current region has the next region and next region's start station can not be set.

See Also