指定した緯度を作成します。
名前空間: System.Spatial
アセンブリ: System.Spatial (System.Spatial.dll)
構文
'宣言
Public Shared Function Create ( _
x As Double, _
y As Double, _
z As Nullable(Of Double) _
) As GeometryPoint
'使用
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
パラメーター
- x
型: System.Double
x 座標。
- y
型: System.Double
y 座標。
- z
型: System.Nullable<Double>
z 座標。
戻り値
型: System.Spatial.GeometryPoint
作成された GeographyPoint。