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


IPolygon.FindExteriorRing Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (Geometry)  

IPolygon.FindExteriorRing Method

Returns the exterior ring containing the specified interior ring.

[Visual Basic .NET]
Public Function FindExteriorRing ( _
    ByVal interiorRing As IRing _
) As IRing
[C#]
public IRing FindExteriorRing (
    IRing interiorRing
);
[C++]
HRESULT FindExteriorRing(
  IRing* interiorRing,
  IRing** exteriorRing
);
[C++]

Parameters interiorRing
interiorRing is a parameter of type IRing exteriorRing [out, retval]
exteriorRing is a parameter of type IRing

Product Availability

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

Description

Returns the Exterior Ring to which the input Interior Ring belongs.  Every interior ring belongs to one and only one exterior ring.

Remarks

 

IPolygon FindExteriorRing Example

See Also

IPolygon Interface