Finds the offset and elevation values at the given X,Y coordinate.

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

Syntax

C#
public bool FindOffsetAndElevationAtXY(
	double x,
	double y,
	ref double offset,
	ref double elevation
)
Visual Basic
Public Function FindOffsetAndElevationAtXY ( _
	x As Double, _
	y As Double, _
	ByRef offset As Double, _
	ByRef elevation As Double _
) As Boolean
Visual C++
public:
bool FindOffsetAndElevationAtXY(
	double x, 
	double y, 
	double% offset, 
	double% elevation
)

Parameters

x
Type: System..::..Double
The X coordinate in the section view's coordinate system.
y
Type: System..::..Double
The Y coordinate in the section view's coordinate system.
offset
Type: System..::..Double%
Returns the corresponding offset.
elevation
Type: System..::..Double%
Returns the corresponding elevation.

Return Value

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

See Also