Gets the points of vertical intersection for the profile.
Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280
Syntax
C#
public ProfilePVICollection PVIs { get; }
VB
Public ReadOnly Property PVIs As ProfilePVICollection Get
C++
public: property ProfilePVICollection^ PVIs { ProfilePVICollection^ get (); }
Property Value
ProfilePVICollectionExample
1// Find the PVI close to station 1000 elevation -70. 2ProfilePVI oProfilePVI = oProfile.PVIs.GetPVIAt(1000, -70); 3ed.WriteMessage("PVI closest to station 1000 is at station: {0}", oProfilePVI.Station); 4// Add another PVI and slightly adjust its elevation. 5oProfilePVI = oProfile.PVIs.AddPVI(607.4, -64.3); 6oProfilePVI.Elevation -= 2.0;