SqlGeometry.BufferWithCurves Method (Double)

 

Applies To: SQL Server 2016 Preview

Buffers the geometry objects with curves.

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

Syntax

[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
public SqlGeometry BufferWithCurves(
    double distance
)
public:
[SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)]
SqlGeometry^ BufferWithCurves(
    double distance
)
[<SqlMethodAttribute(IsDeterministic = true, IsPrecise = false)>]
member BufferWithCurves : 
        distance:float -> SqlGeometry
<SqlMethodAttribute(IsDeterministic := True, IsPrecise := False)>
Public Function BufferWithCurves (
    distance As Double
) As SqlGeometry

Parameters

  • distance
    Type: System.Double

    A double that specifies the distance from the SqlGeometry instance around which to calculate the buffer.

Return Value

Type: Microsoft.SqlServer.Types.SqlGeometry

The buffered objects.

See Also

SqlGeometry Class
Microsoft.SqlServer.Types Namespace

Return to top