Creates stacked ProfileViews from the specified alignment.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0
Syntax
C# |
---|
public static ObjectIdCollection Create(
ObjectId alignmentId,
Point3d insertPosition,
string profileViewName,
ObjectId profileViewBandSetId,
StackedProfileViewsCreationOptions stackedOptions
) |
Visual Basic |
---|
Public Shared Function Create ( _
alignmentId As ObjectId, _
insertPosition As Point3d, _
profileViewName As String, _
profileViewBandSetId As ObjectId, _
stackedOptions As StackedProfileViewsCreationOptions _
) As ObjectIdCollection |
Visual C++ |
---|
public:
static ObjectIdCollection^ Create(
ObjectId alignmentId,
Point3d insertPosition,
String^ profileViewName,
ObjectId profileViewBandSetId,
StackedProfileViewsCreationOptions^ stackedOptions
) |
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 of the stacked ProfileViews.
- profileViewBandSetId
- Type: ObjectId
The ObjectId of the ProfileViewBandSet to import to stacked ProfileViews.
- stackedOptions
- Type: Autodesk.Civil.DatabaseServices..::..StackedProfileViewsCreationOptions
An object containing additional options for creating the stacked profileViews.
Exceptions
Exception | Condition |
---|
System..::..ArgumentException |
Thrown when:
- The alignmentId is invalid.
- The profileViewBandSetId is invalid.
- The profileViewName is a duplicate.
|
See Also