The AutoBufferZone method creates a buffer zone around areas, points, or curves.
Syntax
object.AutoBufferZone( BufferWidth, AroundArea, AroundPoint, AroundCurve )
Parameter |
Type |
Description |
BufferWidth |
Double |
required; width in the map window's surface distance units |
AroundArea |
Boolean |
required; true to buffer areas |
AroundPoint |
Boolean |
required; true to buffer points |
AroundCurve |
Boolean |
required; true to buffer curves |
Remarks
The BufferWidth parameter is defined in the document's current distance units. Buffer zones are only created around select objects that meet the parameter criteria.
Example
This example create a buffer of 5 units around selected curves.
MapShapes.AutoBufferZone(BufferWidth:=5, AroundArea:=False, _ AroundPoint:=False, AroundCurve:=True)
Used by: Shapes collection