BaselineRegionAddStation Method

Adds a station to the BaselineRegion.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public void AddStation(
	double rawStation,
	string description
)

Parameters

rawStation  Double
The station number to add.
description  String
A description of the station.
Example
C#
1// Add an assembly to the middle of the baseline region
2double newStation = oBaselineRegion.StartStation +
3    ((oBaselineRegion.EndStation - oBaselineRegion.StartStation) / 2);
4oBaselineRegion.AddStation(newStation, "New Station");
5ed.WriteMessage("Added New Station: {0}", newStation);
See Also