Add Method (String, ObjectId, Double, Double)

Adds a region at the specified start and end station with the given name and assembly.

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

Syntax

C#

public BaselineRegion Add(
	string regionName,
	ObjectId assemblyId,
	double startStation,
	double endStation
)

Visual Basic

Public Function Add ( _
	regionName As String, _
	assemblyId As ObjectId, _
	startStation As Double, _
	endStation As Double _
) As BaselineRegion

Visual C++

public:
BaselineRegion^ Add(
	String^ regionName, 
	ObjectId assemblyId, 
	double startStation, 
	double endStation
)

Parameters

regionName
Type: System.String
Name of the created region.
assemblyId
Type: ObjectId
Object id of the assembly used to create region.
startStation
Type: System.Double
endStation
Type: System.Double
The end station used to create region.

Exceptions

ExceptionCondition
System.ArgumentException Thrown when:
  • The start or end station is invalid.
  • The region name or assembly id is invalid.

See Also