Método ISqlSpatialGridIndexable.GetBoundingBoxCorners
Essa API oferece suporte à infraestrutura do SQL Server 2012 e não se destina a ser usada diretamente no seu código.
Returns the bounding box corners of the SqlGeography or SqlGeometry instance.
Namespace: Microsoft.SqlServer.Types
Assembly: Microsoft.SqlServer.Types (em Microsoft.SqlServer.Types.dll)
Sintaxe
'Declaração
Sub GetBoundingBoxCorners ( _
<OutAttribute> ByRef minX As Double, _
<OutAttribute> ByRef minY As Double, _
<OutAttribute> ByRef maxX As Double, _
<OutAttribute> ByRef maxY As Double _
)
'Uso
Dim instance As ISqlSpatialGridIndexable
Dim minX As Double
Dim minY As Double
Dim maxX As Double
Dim maxY As Double
instance.GetBoundingBoxCorners(minX, _
minY, maxX, maxY)
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
function GetBoundingBoxCorners(
minX : double,
minY : double,
maxX : double,
maxY : double
)
Parâmetros
- minX
Tipo: System.Double%
When this method returns, contains the x-coordinate of the lower-left corner of the bounding box.
- minY
Tipo: System.Double%
When this method returns, contains the y-coordinate of the lower-left corner of the bounding box.
- maxX
Tipo: System.Double%
When this method returns, contains the x-coordinate of the upper-right corner of the bounding box.
- maxY
Tipo: System.Double%
When this method returns, contains the y-coordinate of the upper-right corner of the bounding box.