Share

CorridorTransition.EndStation Property

Gets or sets end station.



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
InvalidOperationException Thrown when getting but end station hasn't been set.
ArgumentOutOfRangeException Thrown when setting to a new station which is:
  1. Less than start station.
  2. Out of range of the transition set.
  3. Out of range of the baseline.

Remarks

It's recommended to check HasEndStation property first to avoid handling exception. The station is raw station. If transition set's station lock status is true, modifying a transition's non-empty end station to another non-empty value will cause all transitions' start station and end station in the transition set to move by an offset simultaneously.

See Also

Reference

Was this information helpful?