SqlGeometry.STBuffer(Double) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
[Microsoft.SqlServer.Server.SqlMethod(IsDeterministic=true, IsPrecise=false)]
public Microsoft.SqlServer.Types.SqlGeometry STBuffer (double distance);
[<Microsoft.SqlServer.Server.SqlMethod(IsDeterministic=true, IsPrecise=false)>]
member this.STBuffer : double -> Microsoft.SqlServer.Types.SqlGeometry
Public Function STBuffer (distance As Double) As SqlGeometry
Parameters
- distance
- Double
A double that specifies the distance from the SqlGeometry instance around which to calculate the buffer.
Returns
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.
- Attributes