Share via


ISqlSpatialGridIndexable.GetBoundingBoxCorners Method (Double, Double, Double, Double)

 

Applies To: SQL Server 2016 Preview

This API supports the product infrastructure and is not intended to be used directly from your code.

Returns the bounding box corners of the SqlGeography or SqlGeometry instance.

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

Syntax

void GetBoundingBoxCorners(
    out double minX,
    out double minY,
    out double maxX,
    out double maxY
)
void GetBoundingBoxCorners(
    [OutAttribute] double% minX,
    [OutAttribute] double% minY,
    [OutAttribute] double% maxX,
    [OutAttribute] double% maxY
)
abstract GetBoundingBoxCorners : 
        minX:float byref *
        minY:float byref *
        maxX:float byref *
        maxY:float byref -> unit
Sub GetBoundingBoxCorners (
    <OutAttribute> ByRef minX As Double,
    <OutAttribute> ByRef minY As Double,
    <OutAttribute> ByRef maxX As Double,
    <OutAttribute> ByRef maxY As Double
)

Parameters

  • minX
    Type: System.Double

    When this method returns, contains the x-coordinate of the lower-left corner of the bounding box.

  • minY
    Type: System.Double

    When this method returns, contains the y-coordinate of the lower-left corner of the bounding box.

  • maxX
    Type: System.Double

    When this method returns, contains the x-coordinate of the upper-right corner of the bounding box.

  • maxY
    Type: System.Double

    When this method returns, contains the y-coordinate of the upper-right corner of the bounding box.

See Also

ISqlSpatialGridIndexable Interface
Microsoft.SqlServer.Types Namespace

Return to top