TileCacheGeneratedLayerBaseEventArgs¶
Namespace: ThinkGeo.Core
Provides data for tile cache generation progress notifications.
public class TileCacheGeneratedLayerBaseEventArgs
Inheritance object → TileCacheGeneratedLayerBaseEventArgs
Properties¶
Tile¶
Gets the tile that triggered the notification.
public RasterTile Tile { get; }
Property Value¶
TotalTileCount¶
Gets the total number of tiles required to complete the cache.
public int TotalTileCount { get; }
Property Value¶
TilesCompleted¶
Gets the number of tiles that have been generated.
public int TilesCompleted { get; }
Property Value¶
Constructors¶
TileCacheGeneratedLayerBaseEventArgs(RasterTile, int, int)¶
Initializes a new instance of the TileCacheGeneratedLayerBaseEventArgs class.
public TileCacheGeneratedLayerBaseEventArgs(RasterTile tile, int totalTileCount, int tilesCompleted)
Parameters¶
tile RasterTile
The raster tile that was generated.
totalTileCount int
The total number of tiles that must be generated.
tilesCompleted int
The number of tiles generated so far.