Aracılığıyla paylaş


STArea (veri türü geometri)

Toplam yüzey alanı döndürüyor bir geometry Örnek.

.STArea ( )

Dönüş Türleri

SQL Server döndürme türü: float

CLR dönüş türü: SqlDouble

Remarks

STArea() 0 döndürür bir geometry yalnızca 0 ve 1 boyutlu şekiller örnek içerir veya boştur.

Örnekler

The following example uses STArea() to create a Polygongeometry instance and computes the area of the polygon.

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.STArea();