DrawingExceptionOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the DrawingExceptionOverlay event.
public class DrawingExceptionOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → DrawingExceptionOverlayEventArgs
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.
Cancel¶
Gets or sets a value indicating whether this DrawingExceptionOverlayEventArgs is cancel.
public bool Cancel { get; set; }
Property Value¶
Boolean
true if cancel; otherwise, false.
Constructors¶
DrawingExceptionOverlayEventArgs()¶
Initializes a new instance of the DrawingExceptionOverlayEventArgs class.
public DrawingExceptionOverlayEventArgs()
DrawingExceptionOverlayEventArgs(GeoCanvas, Exception)¶
Initializes a new instance of the DrawingExceptionOverlayEventArgs class.
public DrawingExceptionOverlayEventArgs(GeoCanvas canvas, Exception exception)
Parameters¶
canvas
GeoCanvas
The canvas.
exception
Exception
The exception.
DrawingExceptionOverlayEventArgs(GeoCanvas, Exception, Boolean)¶
Initializes a new instance of the DrawingExceptionOverlayEventArgs class.
public DrawingExceptionOverlayEventArgs(GeoCanvas canvas, Exception exception, bool cancel)
Parameters¶
canvas
GeoCanvas
The canvas.
exception
Exception
The exception.
cancel
Boolean
if set to true [cancel].