ArcObjects Library Reference  (Carto)    

IImageTileServer.GetTile Method

Gets a tile from the attached tile cache.

[Visual Basic 6.0]
Function GetTile(
    ByVal partition As Long, _
    ByVal level As Long, _
    ByVal Row As Long, _
    ByVal column As Long _
)() As Byte
[Visual Basic .NET]
Public Function GetTile ( _
    ByVal partition As Integer, _
    ByVal level As Integer, _
    ByVal Row As Integer, _
    ByVal column As Integer _
) As Byte[]
[C#]
public Byte[] GetTile (
    int partition,
    int level,
    int Row,
    int column
);
[Java]
public Byte[] getTile (
    int partition,
    int level,
    int Row,
    int column
)
throws
    IOException,
    AutomationException
[C++]
HRESULT GetTile(
  long partition,
  long level,
  long Row,
  long column,
  pData* pData
);
[C++]

Parameters

partition [in]

  partition is a parameter of type long

level [in]

  level is a parameter of type long

Row [in]

  Row is a parameter of type long

column [in]

  column is a parameter of type long

pData [out, retval]

  pData is a parameter of type

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IImageTileServer Interface