STX (geometry)

STX (geometry)#

Returns the X-coordinate property of a Point instance.

Syntax#

.STX

Return type#

float

Remarks#

The value of this property will be null if the geometry instance is not a point.

This property is read-only.

Example#

Create a Point instance and use STX to retrieve the X-coordinate of the instance.

DECLARE @g geometry;
SET @g = geometry::STGeomFromText('POINT(3 8)', 0);
SELECT @g.STX;

See Also#