Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
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();