DbSpatialServices.Crosses 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
判斷兩個指定的 DbGeometry 值是否在空間上交叉。
命名空間: System.Data.Entity.Spatial
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public MustOverride Function Crosses ( _
geometryValue As DbGeometry, _
otherGeometry As DbGeometry _
) As Boolean
'用途
Dim instance As DbSpatialServices
Dim geometryValue As DbGeometry
Dim otherGeometry As DbGeometry
Dim returnValue As Boolean
returnValue = instance.Crosses(geometryValue, _
otherGeometry)
public abstract bool Crosses(
DbGeometry geometryValue,
DbGeometry otherGeometry
)
public:
virtual bool Crosses(
DbGeometry^ geometryValue,
DbGeometry^ otherGeometry
) abstract
abstract Crosses :
geometryValue:DbGeometry *
otherGeometry:DbGeometry -> bool
public abstract function Crosses(
geometryValue : DbGeometry,
otherGeometry : DbGeometry
) : boolean
參數
- geometryValue
類型:System.Data.Entity.Spatial.DbGeometry
第一個幾何值。
- otherGeometry
類型:System.Data.Entity.Spatial.DbGeometry
第二個幾何值。
傳回值
類型:System.Boolean
若 geometryValue 與 otherGeometry 交叉,則為 true,否則為 false。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | geometryValue 或 otherGeometry 為 null。 |
ArgumentException | geometryValue 或 otherGeometry 與此空間服務實作不相容。 |