FindXYAtOffsetAndElevation Method

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

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

Syntax

C#

public bool FindXYAtOffsetAndElevation(
	double offset,
	double elevation,
	ref double x,
	ref double y
)

Visual Basic

Public Function FindXYAtOffsetAndElevation ( _
	offset As Double, _
	elevation As Double, _
	ByRef x As Double, _
	ByRef y As Double _
) As Boolean

Visual C++

public:
bool FindXYAtOffsetAndElevation(
	double offset, 
	double elevation, 
	double% x, 
	double% y
)

Parameters

offset
Type: System.Double
Offset value.
elevation
Type: System.Double
Elevation value.
x
Type: System.Double%
Returns the x value in the section view's coordinate system.
y
Type: System.Double%
Returns the y value in the section view's coordinate system.

Return Value

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

See Also