This document is archived and information here might be outdated. Recommended version. |
Introduces new vertices into this polyline at specified distances from the beginning of the polyline.
[Visual Basic .NET] Public Function SplitAtDistances ( _ ByVal distanceCount As Integer, _ ByRef distances As Double, _ ByVal asRatios As Boolean, _ ByVal createParts As Boolean _ ) As IEnumSplitPoint
[C#] public IEnumSplitPoint SplitAtDistances ( int distanceCount, ref double distances, ref bool asRatios, ref bool createParts );
[C++]
HRESULT SplitAtDistances(
long distanceCount,
System.Double* distances,
VARIANT_BOOL asRatios,
VARIANT_BOOL createParts
);
[C++] Parameters distanceCount
distanceCount is a parameter of type long distances
distances is a parameter of type double* asRatios
asRatios is a parameter of type bool createParts
createParts is a parameter of type bool
When using C# you must use the IGeometryBridge interface to call this method.
When using VBNET you must use the IGeometryBridge interface to call this method.