FindXYAtStationAndElevation Method

Finds the X,Y coordinate for the given station and elevation.

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

Syntax

C#

public bool FindXYAtStationAndElevation(
	double station,
	double elevation,
	ref double x,
	ref double y
)

Visual Basic

Public Function FindXYAtStationAndElevation ( _
	station As Double, _
	elevation As Double, _
	ByRef x As Double, _
	ByRef y As Double _
) As Boolean

Visual C++

public:
bool FindXYAtStationAndElevation(
	double station, 
	double elevation, 
	double% x, 
	double% y
)

Parameters

station
Type: System.Double
Station value along the parent alignment.
elevation
Type: System.Double
Elevation value along the parent alignment.
x
Type: System.Double%
Returns the x value in the profile view's coordinate system.
y
Type: System.Double%
Returns the y value in the profile view's coordinate system.

Return Value

Returns a flag indicating whether the point returned is within the boundary of the graph.

See Also