Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Erstellt die angegebene Breite.
Namespace: System.Spatial
Assembly: System.Spatial (in System.Spatial.dll)
Syntax
'Declaration
Public Shared Function Create ( _
x As Double, _
y As Double, _
z As Nullable(Of Double) _
) As GeometryPoint
'Usage
Dim x As Double
Dim y As Double
Dim z As Nullable(Of Double)
Dim returnValue As GeometryPoint
returnValue = GeometryPoint.Create(x, y, z)
public static GeometryPoint Create(
double x,
double y,
Nullable<double> z
)
public:
static GeometryPoint^ Create(
double x,
double y,
Nullable<double> z
)
static member Create :
x:float *
y:float *
z:Nullable<float> -> GeometryPoint
public static function Create(
x : double,
y : double,
z : Nullable<double>
) : GeometryPoint
Parameter
- x
Typ: System.Double
Die x-Dimension.
- y
Typ: System.Double
Die y-Dimension.
- z
Typ: System.Nullable<Double>
Die z-Dimension.
Rückgabewert
Typ: System.Spatial.GeometryPoint
Der erstellte Geografiepunkt.