SqlGeometry.STDisjoint 方法

Determines whether the calling SqlGeometry instance is disjointed when compared against the specified SqlGeometry.

命名空间:  Microsoft.SqlServer.Types
程序集:  Microsoft.SqlServer.Types(在 Microsoft.SqlServer.Types.dll 中)

语法

声明
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)> _
Public Function STDisjoint ( _
    other As SqlGeometry _
) As SqlBoolean
用法
Dim instance As SqlGeometry 
Dim other As SqlGeometry 
Dim returnValue As SqlBoolean 

returnValue = instance.STDisjoint(other)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlBoolean STDisjoint(
    SqlGeometry other
)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public:
SqlBoolean STDisjoint(
    SqlGeometry^ other
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member STDisjoint : 
        other:SqlGeometry -> SqlBoolean
public function STDisjoint(
    other : SqlGeometry
) : SqlBoolean

参数

返回值

类型:System.Data.SqlTypes.SqlBoolean
Returns true if a SqlGeometry instance is spatially disjointed from another SqlGeometry instance. Returns false if it is not.

注释

Two SqlGeometry instances are disjointed if the intersection of their point sets is empty.

This method always returns null if the spatial reference IDs (SRIDs) of the SqlGeometry instances do not match.

请参阅

参考

SqlGeometry 类

Microsoft.SqlServer.Types 命名空间