ArcObjects Library Reference  (Carto)    

IMapCooker.PutTile Method

Puts a tile for a given tile location for a given layer.

[Visual Basic 6.0]
Sub PutTile(
    ByVal pLayer As ILayer, _
    ByVal level As Long, _
    ByVal Row As Long, _
    ByVal column As Long, _
    ppTile() As Byte _
)
[Visual Basic .NET]
Public Sub PutTile ( _
    ByVal pLayer As ILayer, _
    ByVal level As Integer, _
    ByVal Row As Integer, _
    ByVal column As Integer, _
    ByRef ppTile As Byte[]& _
)
[C#]
public void PutTile (
    ILayer pLayer,
    int level,
    int Row,
    int column,
    ref Byte[]& ppTile
);
[Java]
public void putTile (
    ILayer pLayer,
    int level,
    int Row,
    int column,
    Byte[]& ppTile
)
throws
    IOException,
    AutomationException
[C++]
HRESULT PutTile(
  ILayer* pLayer,
  long level,
  long Row,
  long column,
  ppTile* ppTile
);
[C++]

Parameters

pLayer [in]

  pLayer is a parameter of type ILayer

level

  level is a parameter of type long

Row

  Row is a parameter of type long

column

  column is a parameter of type long

ppTile [in]

  ppTile is a parameter of type

Product Availability

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

See Also

IMapCooker Interface