DrawnExceptionOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the DrawnExceptionOverlay event.
public class DrawnExceptionOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawnExceptionOverlayEventArgs
Properties¶
Exception¶
Gets or sets the exception.
public Exception Exception { get; set; }
Property Value¶
Exception
The exception.
Canvas¶
Gets or sets the canvas.
public GeoCanvas Canvas { get; set; }
Property Value¶
GeoCanvas
The canvas.
Constructors¶
DrawnExceptionOverlayEventArgs()¶
Initializes a new instance of the DrawnExceptionOverlayEventArgs class.
public DrawnExceptionOverlayEventArgs()
DrawnExceptionOverlayEventArgs(GeoCanvas, Exception)¶
Initializes a new instance of the DrawnExceptionOverlayEventArgs class.
public DrawnExceptionOverlayEventArgs(GeoCanvas canvas, Exception exception)
Parameters¶
canvas
GeoCanvas
The canvas.
exception
Exception
The exception.