Gets the objectId collection of all Alignment objects in the drawing.
Namespace: Autodesk.Civil.ApplicationServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280
Syntax
C#
public ObjectIdCollection GetAlignmentIds()
VB
Public Function GetAlignmentIds As ObjectIdCollection
C++
public: ObjectIdCollection^ GetAlignmentIds()
Return Value
ObjectIdCollectionRemarks
The collection returned by this method includes both site and siteless alignments.Example
1// get first profile of first alignment in document 2ObjectId alignID = doc.GetAlignmentIds()[0]; 3Alignment oAlignment = ts.GetObject(alignID, OpenMode.ForRead) as Alignment;