Not
Åtkomst till denna sida kräver auktorisation. Du kan prova att logga in eller byta katalog.
Åtkomst till denna sida kräver auktorisation. Du kan prova att byta katalog.
Creates the specified latitude.
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), _
m As Nullable(Of Double) _
) As GeometryPoint
'Usage
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(x, y, z, _
m)
public static GeometryPoint Create(
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
public:
static GeometryPoint^ Create(
double x,
double y,
Nullable<double> z,
Nullable<double> m
)
static member Create :
x:float *
y:float *
z:Nullable<float> *
m:Nullable<float> -> GeometryPoint
public static function Create(
x : double,
y : double,
z : Nullable<double>,
m : Nullable<double>
) : GeometryPoint
Parameters
- x
Type: System.Double
The x dimension.
- y
Type: System.Double
The y dimension.
- z
Type: System.Nullable<Double>
The z dimension.
- m
Type: System.Nullable<Double>
The m dimension.
Return Value
Type: System.Spatial.GeometryPoint
The GeographyPoint that was created.