ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data.Analyst3D Namespace / TerrainTileProperties Class / TileSize Property
Example

In This Topic
    TileSize Property
    In This Topic
    Gets the tile size.
    Syntax
    Public ReadOnly Property TileSize As Double
    public double TileSize {get;}
    Example
    Get Tile Information from a Terrain
    {
      var tileInfo = terrainDataset.GetTileProperties();
      var colCount = tileInfo.ColumnCount;
      var rowCount = tileInfo.RowCount;
      var tileSize = tileInfo.TileSize;
      var tileCount = tileInfo.TileCount;
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.2 or higher.
    See Also