This document is archived and information here might be outdated.  Recommended version.


IBufferConstructionProperties.OutsideOnly Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IB > IBufferConstructionProperties Interface > IBufferConstructionProperties.OutsideOnly Property
ArcGIS Developer Help

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(
  Boolean* bpOutsideOnly
);
[C++]
Parameters
bpOutsideOnly 

bpOutsideOnly is a parameter of type bool bpOutsideOnly [out, retval]
bpOutsideOnly is a parameter of type 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