Share

TransitionDescriptionBase.StartStation Property

Sets or gets the start station for the transition.



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

Syntax

C#

public double StartStation { get; set; }

VB

Public Property StartStation As Double
	Get
	Set

C++

public:
property double StartStation {
	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 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.

See Also

Reference

Was this information helpful?