SqlGeometry.HasM Property

 

Applies To: SQL Server 2016 Preview

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

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

Syntax

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

Property Value

Type: System.Boolean

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

See Also

SqlGeometry Class
Microsoft.SqlServer.Types Namespace

Return to top