DrawnTileViewEventArgs¶
Namespace: ThinkGeo.UI.Wpf
Provides data for tile drawn events raised by TileView.
public class DrawnTileViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawnTileViewEventArgs
Properties¶
GeoCanvas¶
Gets or sets the canvas used to render the tile.
public GeoCanvas GeoCanvas { get; set; }
Property Value¶
GeoCanvas
Cancel¶
Gets or sets a value indicating whether the draw operation should be cancelled.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
DrawnTileViewEventArgs()¶
Initializes a new instance of the DrawnTileViewEventArgs class.
public DrawnTileViewEventArgs()
DrawnTileViewEventArgs(GeoCanvas)¶
Initializes a new instance of the DrawnTileViewEventArgs class.
public DrawnTileViewEventArgs(GeoCanvas geoCanvas)
Parameters¶
geoCanvas GeoCanvas
 The canvas that rendered the tile.
DrawnTileViewEventArgs(GeoCanvas, Boolean)¶
Initializes a new instance of the DrawnTileViewEventArgs class.
public DrawnTileViewEventArgs(GeoCanvas geoCanvas, bool cancel)
Parameters¶
geoCanvas GeoCanvas
 The canvas that rendered the tile.
cancel Boolean
 Whether the draw operation should be cancelled.