Returns the easting and northing of a point on an Alignment given a station and an offset for the Alignment.

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

Syntax

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

Parameters

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

Exceptions

ExceptionCondition
Autodesk.Civil..::..PointNotOnEntityException Thrown when the station is out of Alignment station range.

See Also