Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Returns a value for the bounding box corners for the SQL Geography.
Namespace: Microsoft.SqlServer.Types
Assembly: Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)
Syntax
'Declaration
Private Sub GetBoundingBoxCorners ( _
<OutAttribute> ByRef minX As Double, _
<OutAttribute> ByRef minY As Double, _
<OutAttribute> ByRef maxX As Double, _
<OutAttribute> ByRef maxY As Double _
) Implements ISqlSpatialGridIndexable.GetBoundingBoxCorners
'Usage
Dim instance As SqlGeography
Dim minX As Double
Dim minY As Double
Dim maxX As Double
Dim maxY As Double
CType(instance, ISqlSpatialGridIndexable).GetBoundingBoxCorners(minX, _
minY, maxX, maxY)
void ISqlSpatialGridIndexable.GetBoundingBoxCorners(
out double minX,
out double minY,
out double maxX,
out double maxY
)
private:
virtual void GetBoundingBoxCorners(
[OutAttribute] double% minX,
[OutAttribute] double% minY,
[OutAttribute] double% maxX,
[OutAttribute] double% maxY
) sealed = ISqlSpatialGridIndexable::GetBoundingBoxCorners
private abstract GetBoundingBoxCorners :
minX:float byref *
minY:float byref *
maxX:float byref *
maxY:float byref -> unit
private override GetBoundingBoxCorners :
minX:float byref *
minY:float byref *
maxX:float byref *
maxY:float byref -> unit
JScript unterstützt die Verwendung expliziter Schnittstellenimplementierungen, aber nicht die Deklaration neuer Schnittstellenimplementierungen.
Parameter
- minX
Typ: System.Double%
The minimum value of X.
- minY
Typ: System.Double%
The minimum value of Y.
- maxX
Typ: System.Double%
The maximum value of X.
- maxY
Typ: System.Double%
The maximum value of Y.
Implementiert
ISqlSpatialGridIndexable.GetBoundingBoxCorners(Double%, Double%, Double%, Double%)