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