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 geometric object that represents the union of all points whose distance from a SqlGeometry instance is less than or equal to a specified value.
Namespace: Microsoft.SqlServer.Types
Assembly: Microsoft.SqlServer.Types (in Microsoft.SqlServer.Types.dll)
Syntax
'Declaration
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)> _
Public Function STBuffer ( _
distance As Double _
) As SqlGeometry
'Usage
Dim instance As SqlGeometry
Dim distance As Double
Dim returnValue As SqlGeometry
returnValue = instance.STBuffer(distance)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlGeometry STBuffer(
double distance
)
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public:
SqlGeometry^ STBuffer(
double distance
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member STBuffer :
distance:float -> SqlGeometry
public function STBuffer(
distance : double
) : SqlGeometry
Parameter
- distance
Typ: System.Double
A double that specifies the distance from the SqlGeometry instance around which to calculate the buffer.
Rückgabewert
Typ: Microsoft.SqlServer.Types.SqlGeometry
A SqlGeometry object that represents the union of all points whose distance from the calling SqlGeometry is less than or equal to the specified value.
Hinweise
STBuffer calculates a buffer in the same manner as BufferWithTolerance, that specifies tolerance = distance * .001 and relative = true.
A negative buffer removes all points within the given distance of the boundary of the SqlGeometry.