DrawnTileTileOverlayEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data for the DrawnTile event raised after a TileOverlay tile is rendered.
public class DrawnTileTileOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawnTileTileOverlayEventArgs
Properties¶
DrawnTile¶
Gets or sets the tile that just finished drawing.
public TileView DrawnTile { get; set; }
Property Value¶
GeoCanvas¶
Gets or sets the canvas used to render the tile.
public GeoCanvas GeoCanvas { get; set; }
Property Value¶
GeoCanvas
Constructors¶
DrawnTileTileOverlayEventArgs()¶
Initializes a new instance of the DrawnTileTileOverlayEventArgs class.
public DrawnTileTileOverlayEventArgs()
DrawnTileTileOverlayEventArgs(TileView, GeoCanvas)¶
Initializes a new instance of the DrawnTileTileOverlayEventArgs class.
public DrawnTileTileOverlayEventArgs(TileView drawnTile, GeoCanvas geoCanvas)
Parameters¶
drawnTile TileView
The tile that was drawn.
geoCanvas GeoCanvas
The canvas that rendered the tile.