Skip to content

DrawnTileViewEventArgs

Namespace: ThinkGeo.UI.Wpf

Provides data for tile drawn events raised by TileView.

public class DrawnTileViewEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawnTileViewEventArgs

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

Boolean

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.