Skip to content

DrawingOverlayEventArgs

Namespace: ThinkGeo.UI.Android

public class DrawingOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsDrawingOverlayEventArgs

Properties

MapArguments

Gets or sets an extent to draw the overlay.

public MapArguments MapArguments { get; set; }

Property Value

MapArguments

Cancel

Gets or sets a value that determines whether you want to cancel the Overlay from drawing.

public bool Cancel { get; set; }

Property Value

Boolean
This property gets a value that determines whether you want to cancel the Overlay from drawing.

Remarks:

None

Constructors

DrawingOverlayEventArgs()

Constructor of DrawingOverlayEventArgs class.

public DrawingOverlayEventArgs()

Remarks:

This is the default constructor. If you use this constructor then you need to set the required properties manually.

DrawingOverlayEventArgs(MapArguments, Boolean)

Constructor of DrawingOverlayEventArgs class.

public DrawingOverlayEventArgs(MapArguments mapArguments, bool cancel)

Parameters

mapArguments MapArguments
This parameter holds the map arguments for drawing an overlay.

cancel Boolean
This parameter indicates whether cancel current drawing process.