SqlGeography.HasZ Property

 

Applies To: SQL Server 2016 Preview

Returns true if at least one point in a spatial object contains value Z; otherwise returns false. This property is read-only.

Namespace:   Microsoft.SqlServer.Types
Assembly:  Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)

Syntax

public bool HasZ {
    [SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
    get;
}
public:
property bool HasZ {
    [SqlMethodAttribute(IsDeterministic = true, IsPrecise = true)]
    bool get();
}
member HasZ : bool with get
Public ReadOnly Property HasZ As Boolean

Property Value

Type: System.Boolean

true if at least one point in a spatial object contains value Z; otherwise false.

See Also

SqlGeography Class
Microsoft.SqlServer.Types Namespace

Return to top