Namespace:  EGIS.ShapeFileLib
Assembly:  EGIS.ShapeFileLib (in EGIS.ShapeFileLib.dll)

Syntax

Visual Basic
Public Shared Function PointOnPolyline ( _
	points As PointD(), _
	offset As Integer, _
	numPoints As Integer, _
	pt As PointD, _
	minDist As Double _
) As Boolean
C#
public static bool PointOnPolyline(
	PointD[] points,
	int offset,
	int numPoints,
	PointD pt,
	double minDist
)
Visual C++
public:
static bool PointOnPolyline(
	array<PointD>^ points, 
	int offset, 
	int numPoints, 
	PointD pt, 
	double minDist
)
JavaScript
EGIS.ShapeFileLib.GeometryAlgorithms.pointOnPolyline = function(points, offset, numPoints, pt, minDist);

Parameters

points
Type: array<EGIS.ShapeFileLib..::..PointD>[]()[][]
offset
Type: System..::..Int32
numPoints
Type: System..::..Int32
pt
Type: EGIS.ShapeFileLib..::..PointD
minDist
Type: System..::..Double

See Also