Skip to content

DrawingExceptionTileOverlayEventArgs

Namespace: ThinkGeo.UI.Wpf

public class DrawingExceptionTileOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawingExceptionTileOverlayEventArgs

Properties

Exception

Gets or sets the exception that was thrown.

public Exception Exception { get; set; }

Property Value

Exception

Canvas

Gets or sets the canvas associated with the exception.

public GeoCanvas Canvas { get; set; }

Property Value

GeoCanvas

Cancel

Gets or sets a value indicating whether drawing should continue.

public bool Cancel { get; set; }

Property Value

Boolean

Constructors

DrawingExceptionTileOverlayEventArgs()

Initializes a new instance of the DrawingExceptionTileOverlayEventArgs class.

public DrawingExceptionTileOverlayEventArgs()

DrawingExceptionTileOverlayEventArgs(GeoCanvas, Exception, Boolean)

Initializes a new instance of the DrawingExceptionTileOverlayEventArgs class.

public DrawingExceptionTileOverlayEventArgs(GeoCanvas canvas, Exception exception, bool cancel)

Parameters

canvas GeoCanvas
The canvas that triggered the exception.

exception Exception
The exception that occurred during drawing.

cancel Boolean
A value indicating whether drawing should be cancelled.