Share

ProfilePVI.Station Property

Note: This API is now obsolete.

Gets or sets the station value of the PVI.



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

Syntax

C#

[ObsoleteAttribute("Use Property RawStation instead.", false)]
public double Station { get; set; }

VB

<ObsoleteAttribute("Use Property RawStation instead.", false)>
Public Property Station As Double
	Get
	Set

C++

public:
[ObsoleteAttribute(L"Use Property RawStation instead.", false)]
property double Station {
	double get ();
	void set (double value);
}

Property Value

Double

Exceptions

ExceptionCondition
ArgumentException Thrown when:
  1. The value of the new PVI station is less than or equal to the begin station of the prvious PVI.
  2. The value of the new PVI station is greater than or equal to the end station of next PVI.

Remarks

Note that when station equation exists, get function returns raw station; set function sets newValue as raw station if no Civil UI is launched; while it sets as derived station if Civil UI is launched, use property RawStation::set to set raw station.

See Also

Reference

Was this information helpful?