Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the number of interior rings of a Polygon geometry instance.
Syntax
.STNumInteriorRing ( )
Return Types
SQL Server return type: int
CLR return type: SqlInt32
Remarks
This method returns null if the geometry instance is not a polygon.
Examples
The following example creates a Polygon instance and uses STNumInteriorRing() to find how many interior rings the instance has.
DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POLYGON((0 0, 3 0, 3 3, 0 3, 0 0),(2 2, 2 1, 1 1, 1 2, 2 2))', 0);
SELECT @g.STNumInteriorRing();