This document is archived and information here might be outdated. Recommended version. |
Constructs a set of buffers at various distances. More efficient than calling Buffer repeatedly on the same geometry. This method is intended for internal use only.
[Visual Basic .NET] Public Function ConstructBuffers ( _ ByVal numBuffers As Integer, _ ByRef distances As Double _ ) As IEnumGeometry
[C#] public IEnumGeometry ConstructBuffers ( int numBuffers, ref double distances );
[C++]
HRESULT ConstructBuffers(
long numBuffers,
System.Double* distances
);
[C++] Parameters numBuffers
numBuffers is a parameter of type long distances [in]
distances is a parameter of type double*
use the generic version of this method accesible through the GeometryEnvironment singleton object via the IGeometryBridge interface.
This method is only implemented for polygons and polylines.
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.