SpatialGridCoverage.FillRow Method (Object, Int32, Byte, Byte )

 

Applies To: SQL Server 2016 Preview

This API supports the product infrastructure and is not intended to be used directly from your code.

Fills the grid cell parameters with tessellation property values from the specified object.

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

Syntax

public static void FillRow(
    object obj,
    out int id,
    out byte attribute,
    out byte[] wkb
)
public:
static void FillRow(
    Object^ obj,
    [OutAttribute] int% id,
    [OutAttribute] unsigned char% attribute,
    [OutAttribute] array<unsigned char>^% wkb
)
static member FillRow : 
        obj:Object *
        id:int byref *
        attribute:byte byref *
        wkb:byte[] byref -> unit
Public Shared Sub FillRow (
    obj As Object,
    <OutAttribute> ByRef id As Integer,
    <OutAttribute> ByRef attribute As Byte,
    <OutAttribute> ByRef wkb As Byte()
)

Parameters

  • obj
    Type: System.Object

    The object used to fill the grid cell parameters.

  • id
    Type: System.Int32

    When this method returns, contains the label identifier of the grid cell.

  • attribute
    Type: System.Byte

    When this method returns, contains the coverage attributes of the grid cell.

  • wkb
    Type: System.Byte[]

    When this method returns, contains the Open Geospatial Consortium (OGC) Well-Known Binary (WKB) representation of the grid cell.

See Also

SpatialGridCoverage Class
Microsoft.SqlServer.Types Namespace

Return to top