GeometryOperationsExtensions.Distance メソッド
ジオメトリの距離を決定します。
名前空間: System.Spatial
アセンブリ: System.Spatial (System.Spatial.dll)
構文
'宣言
<ExtensionAttribute> _
Public Shared Function Distance ( _
operand1 As Geometry, _
operand2 As Geometry _
) As Nullable(Of Double)
'使用
Dim operand1 As Geometry
Dim operand2 As Geometry
Dim returnValue As Nullable(Of Double)
returnValue = operand1.Distance(operand2)
public static Nullable<double> Distance(
this Geometry operand1,
Geometry operand2
)
[ExtensionAttribute]
public:
static Nullable<double> Distance(
Geometry^ operand1,
Geometry^ operand2
)
static member Distance :
operand1:Geometry *
operand2:Geometry -> Nullable<float>
public static function Distance(
operand1 : Geometry,
operand2 : Geometry
) : Nullable<double>
パラメーター
- operand1
型: System.Spatial.Geometry
最初のオペランド。
- operand2
型: System.Spatial.Geometry
2 番目のオペランド。
戻り値
型: System.Nullable<Double>
操作の結果。
使用に関するメモ
Visual Basic および C# では、このメソッドを型 Geometry の任意のオブジェクトのインスタンス メソッドとして呼び出すことができます。このメソッドを呼び出すためにインスタンス メソッドの構文を使う場合は、最初のパラメーターを省略してください。詳細については、「https://msdn.microsoft.com/ja-jp/library/bb384936(v=vs.103)」または「https://msdn.microsoft.com/ja-jp/library/bb383977(v=vs.103)」を参照してください。