指定した緯度を作成します。
名前空間: System.Spatial
アセンブリ: System.Spatial (System.Spatial.dll)
構文
'宣言
Public Shared Function Create ( _
x As Double, _
y As Double _
) As GeometryPoint
'使用
Dim x As Double
Dim y As Double
Dim returnValue As GeometryPoint
returnValue = GeometryPoint.Create(x, y)
public static GeometryPoint Create(
double x,
double y
)
public:
static GeometryPoint^ Create(
double x,
double y
)
static member Create :
x:float *
y:float -> GeometryPoint
public static function Create(
x : double,
y : double
) : GeometryPoint
パラメーター
- x
型: System.Double
x 座標。
- y
型: System.Double
y 座標。
戻り値
型: System.Spatial.GeometryPoint
作成された GeographyPoint。