Skip to content

ControlPointSelectingEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.UI.Android

Provides data for the ControlPointSelecting event.

public class ControlPointSelectingEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsControlPointSelectingEditInteractiveOverlayEventArgs

Properties

TargetPointShape

This property gets or sets the target control point to be selected.

public PointShape TargetPointShape { get; set; }

Property Value

PointShape

Cancel

This property gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

Boolean

Constructors

ControlPointSelectingEditInteractiveOverlayEventArgs()

This is the default constructor of this parameter.

public ControlPointSelectingEditInteractiveOverlayEventArgs()

Remarks:

If you use this constructor, you have to set the properties manually before use.

ControlPointSelectingEditInteractiveOverlayEventArgs(Boolean, PointShape)

This is the commonly used constructor.

public ControlPointSelectingEditInteractiveOverlayEventArgs(bool cancel, PointShape targetPointShape)

Parameters

cancel Boolean
This parameter specified the cancel property.

targetPointShape PointShape
This parameter specified the target control point to be selected.