Gets the points of vertical intersection for the profile.
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntaxpublic ProfilePVICollection PVIs { get; }
Public ReadOnly Property PVIs As ProfilePVICollection
Get
public:
property ProfilePVICollection^ PVIs {
ProfilePVICollection^ get ();
}
Property Value
ProfilePVICollection
Example1
2ProfilePVI oProfilePVI = oProfile.PVIs.GetPVIAt(1000, -70);
3ed.WriteMessage("PVI closest to station 1000 is at station: {0}", oProfilePVI.Station);
4
5oProfilePVI = oProfile.PVIs.AddPVI(607.4, -64.3);
6oProfilePVI.Elevation -= 2.0;
See Also