Creates multiple stacked split ProfileViews for an alignment.

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

Syntax

C#
public static ObjectIdCollection CreateMultiple(
	ObjectId alignmentId,
	Point3d insertPosition,
	string profileViewName,
	ObjectId profileViewBandSetId,
	StackedProfileViewsCreationOptions stackedOptions,
	MultipleProfileViewsCreationOptions multipleOptions,
	SplitProfileViewCreationOptions splitOptions,
	ProfileViewDatumType datumType
)
Visual Basic
Public Shared Function CreateMultiple ( _
	alignmentId As ObjectId, _
	insertPosition As Point3d, _
	profileViewName As String, _
	profileViewBandSetId As ObjectId, _
	stackedOptions As StackedProfileViewsCreationOptions, _
	multipleOptions As MultipleProfileViewsCreationOptions, _
	splitOptions As SplitProfileViewCreationOptions, _
	datumType As ProfileViewDatumType _
) As ObjectIdCollection
Visual C++
public:
static ObjectIdCollection^ CreateMultiple(
	ObjectId alignmentId, 
	Point3d insertPosition, 
	String^ profileViewName, 
	ObjectId profileViewBandSetId, 
	StackedProfileViewsCreationOptions^ stackedOptions, 
	MultipleProfileViewsCreationOptions^ multipleOptions, 
	SplitProfileViewCreationOptions^ splitOptions, 
	ProfileViewDatumType datumType
)

Parameters

alignmentId
Type: ObjectId
The ObjectId of the alignment.
insertPosition
Type: Point3d
The position at which the ProfileView is inserted.
profileViewName
Type: System..::..String
The name template for the ProfileViews.
profileViewBandSetId
Type: ObjectId
The ObjectId of the ProfileViewBandSet to import to the stacked ProfileViews.
stackedOptions
Type: Autodesk.Civil.DatabaseServices..::..StackedProfileViewsCreationOptions
An object containing additional options for creating stacked ProfileViews.
multipleOptions
Type: Autodesk.Civil.DatabaseServices..::..MultipleProfileViewsCreationOptions
An object containing additional options for creating multiple ProfileViews.
splitOptions
Type: Autodesk.Civil.DatabaseServices..::..SplitProfileViewCreationOptions
An object containing additional options for creating split ProfileViews.
datumType
Type: Autodesk.Civil..::..ProfileViewDatumType
Specifies profile view datum (location of profile lines).

Exceptions

ExceptionCondition
System..::..ArgumentException Thrown when:
  • The alignmentId is invalid.
  • The profileViewName is duplicated.
  • The profileViewBandSetId is invalid.

See Also