DbGeometry.Disjoint メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
この DbGeometry が指定した DbGeometry 引数から空間的に離れているかどうかを判断します。
名前空間: System.Data.Entity.Spatial
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Function Disjoint ( _
other As DbGeometry _
) As Boolean
'使用
Dim instance As DbGeometry
Dim other As DbGeometry
Dim returnValue As Boolean
returnValue = instance.Disjoint(other)
public bool Disjoint(
DbGeometry other
)
public:
bool Disjoint(
DbGeometry^ other
)
member Disjoint :
other:DbGeometry -> bool
public function Disjoint(
other : DbGeometry
) : boolean
パラメーター
- other
型 : System.Data.Entity.Spatial.DbGeometry
この geometry 値と結合解除を比較する必要がある geometry 値。
戻り値
型 : System.Boolean
other がこの geometry 値から離れている場合は true。それ以外の場合は false。
例外
例外 | 状態 |
---|---|
ArgumentNullException | other が null です。 |