This document is archived and information here might be outdated. Recommended version. |
ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IB > IBufferConstructionProperties Interface > IBufferConstructionProperties.OutsideOnly Property (ArcObjects .NET 10.5 SDK) |
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
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.