Share

CorridorTransition.StartStation Property

Gets or sets start station.



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

Remarks

It's recommended to check HasStartStation 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 start 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?