Share

TransitionDescriptionBase.EndStation Property

Sets or gets the end station for the transition.



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

Syntax

C#

public double EndStation { get; set; }

VB

Public Property EndStation As Double
	Get
	Set

C++

public:
property double EndStation {
	double get ();
	void set (double value);
}

Property Value

Double

Exceptions

ExceptionCondition
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.

Remarks

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

See Also

Reference

Was this information helpful?