Méthode GeometryPoint.Create (CoordinateSystem, Double, Double, Nullable<Double>, Nullable<Double>)
Crée la latitude spécifiée.
Espace de noms : System.Spatial
Assembly : System.Spatial (en System.Spatial.dll)
Syntaxe
'Déclaration
Public Shared Function Create ( _
coordinateSystem As CoordinateSystem, _
x As Double, _
y As Double, _
z As Nullable(Of Double), _
m As Nullable(Of Double) _
) As GeometryPoint
'Utilisation
Dim coordinateSystem As CoordinateSystem
Dim x As Double
Dim y As Double
Dim z As Nullable(Of Double)
Dim m As Nullable(Of Double)
Dim returnValue As GeometryPoint
returnValue = GeometryPoint.Create(coordinateSystem, _
x, y, z, m)
public static GeometryPoint Create(
CoordinateSystem coordinateSystem,
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
public:
static GeometryPoint^ Create(
CoordinateSystem^ coordinateSystem,
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
static member Create :
coordinateSystem:CoordinateSystem *
x:float *
y:float *
z:Nullable<float> *
m:Nullable<float> -> GeometryPoint
public static function Create(
coordinateSystem : CoordinateSystem,
x : double,
y : double,
z : Nullable<double>,
m : Nullable<double>
) : GeometryPoint
Paramètres
- coordinateSystem
Type : System.Spatial.CoordinateSystem
Système de coordonnées à utiliser.
- x
Type : System.Double
Dimension x.
- y
Type : System.Double
Dimension y.
- z
Type : System.Nullable<Double>
Dimension z.
- m
Type : System.Nullable<Double>
Dimension m.
Valeur de retour
Type : System.Spatial.GeometryPoint
GeographyPoint créé.