BaselineRegionSplit Method |
Splits the baseline region.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic BaselineRegion Split(
double splitStation
)
Public Function Split (
splitStation As Double
) As BaselineRegion
public:
BaselineRegion^ Split(
double splitStation
)
Parameters
- splitStation Double
- The station in the region used to split.
Return Value
BaselineRegionThe new region.
ExceptionsException | Condition |
---|
[!:System.ArgumentException] |
Thrown when the specified splitStation is not between the start and end station of the 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.
See Also