SqlGeometry.Point 메서드

Constructs a SqlGeometry instance that represents a Point instance from its X and Y values and an SRID.

네임스페이스:  Microsoft.SqlServer.Types
어셈블리:  Microsoft.SqlServer.Types(Microsoft.SqlServer.Types.dll)

구문

‘선언
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)> _
Public Shared Function Point ( _
    x As Double, _
    y As Double, _
    srid As Integer _
) As SqlGeometry
‘사용 방법
Dim x As Double 
Dim y As Double 
Dim srid As Integer 
Dim returnValue As SqlGeometry 

returnValue = SqlGeometry.Point(x, y, srid)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public static SqlGeometry Point(
    double x,
    double y,
    int srid
)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public:
static SqlGeometry^ Point(
    double x, 
    double y, 
    int srid
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
static member Point : 
        x:float * 
        y:float * 
        srid:int -> SqlGeometry
public static function Point(
    x : double, 
    y : double, 
    srid : int
) : SqlGeometry

매개 변수

  • x
    유형: System.Double
    A double that represents the X-coordinate of the Point being generated.
  • y
    유형: System.Double
    A double that represents the Y-coordinate of the Point being generated.
  • srid
    유형: System.Int32
    An int expression that represents the spatial reference ID (SRID) of the SqlGeometry instance you wish to return.

반환 값

유형: Microsoft.SqlServer.Types.SqlGeometry
A SqlGeometry instance that represents a point on a Euclidian coordinate system.

주의

This member is static.

참고 항목

참조

SqlGeometry 클래스

Microsoft.SqlServer.Types 네임스페이스