Méthode Point
Constructs a SqlGeometry instance that represents a Point instance from its X and Y values and an SRID.
Espace de noms : Microsoft.SqlServer.Types
Assembly : Microsoft.SqlServer.Types (en Microsoft.SqlServer.Types.dll)
Syntaxe
'Déclaration
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)> _
Public Shared Function Point ( _
x As Double, _
y As Double, _
srid As Integer _
) As SqlGeometry
'Utilisation
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
Paramètres
- x
Type : System. . :: . .Double
A double that represents the X-coordinate of the Point being generated.
- y
Type : System. . :: . .Double
A double that represents the Y-coordinate of the Point being generated.
- srid
Type : System. . :: . .Int32
An int expression that represents the spatial reference ID (SRID) of the SqlGeometry instance you wish to return.
Valeur de retour
Type : Microsoft.SqlServer.Types. . :: . .SqlGeometry
A SqlGeometry instance that represents a point on a Euclidian coordinate system.
Notes
This member is static.