ArcObjects Library Reference (Geometry)  

IBufferConstructionProperties.OutsideOnly Property

Excludes the inside of the input polygon from the output buffer (default = false).

[Visual Basic .NET]
Public Property OutsideOnly As Boolean
[C#]
public bool OutsideOnly {get; set;}
[C++]
HRESULT get_OutsideOnly(
  VARIANT_BOOL* bpOutsideOnly
);
[C++]
HRESULT put_OutsideOnly(
  VARIANT_BOOL bpOutsideOnly
);
[C++]

Parameters

bpOutsideOnly [out, retval]   bpOutsideOnly is a parameter of type VARIANT_BOOL bpOutsideOnly   bpOutsideOnly is a parameter of type VARIANT_BOOL

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

When buffering polygons, this property controls whether or not the constructed buffer covers only the outside of the polygon. Here is an example of an outside-only buffer.

Outside only buffer

 

See Also

IBufferConstructionProperties Interface