Returns the station and offset on an Alignment at given easting and northing values.

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

Syntax

C#
public void StationOffset(
	double easting,
	double northing,
	ref double station,
	ref double offset
)
Visual Basic
Public Sub StationOffset ( _
	easting As Double, _
	northing As Double, _
	ByRef station As Double, _
	ByRef offset As Double _
)
Visual C++
public:
void StationOffset(
	double easting, 
	double northing, 
	double% station, 
	double% offset
)

Parameters

easting
Type: System..::..Double
Specifies the Easting value.
northing
Type: System..::..Double
Specifies the Northing value.
station
Type: System..::..Double%
Returns the station specified by the northing and easting.
offset
Type: System..::..Double%
Returns the offset specified by the northing and easting.

Exceptions

ExceptionCondition
Autodesk.Civil..::..PointNotOnEntityException Thrown when the easting and northing value are out of Alignment range.

See Also