Splits the baseline region.

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

Syntax

C#
public BaselineRegion Split(
	double splitStation
)
Visual Basic
Public Function Split ( _
	splitStation As Double _
) As BaselineRegion
Visual C++
public:
BaselineRegion^ Split(
	double splitStation
)

Parameters

splitStation
Type: System..::..Double
The station in the region used to split.

Return Value

The new region.

Remarks

The splitStation must at least 0.01 greater than start station and 0.01 less than end station. The region is split into two regions, the first one (from start station) is the current region and the other is returned as a new region.

Exceptions

ExceptionCondition
[!:System.ArgumentException] Thrown when the specified splitStation is not between the start and end station of the region.

See Also