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

Syntax

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

Parameters

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

See Also