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
應該和此幾何值針對不相交做比較的幾何值。
傳回值
類型:System.Boolean
若 other 與此幾何值沒有交集,則為 true,否則為 false。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | other 為 null。 |