ControlPointSelectingEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.Core
Provides data for the ControlPointSelecting event.
public class ControlPointSelectingEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → ControlPointSelectingEditInteractiveOverlayEventArgs
Properties¶
TargetPointShape¶
Gets or sets the target control point to be selected.
public PointShape TargetPointShape { get; set; }
Property Value¶
Cancel¶
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
ControlPointSelectingEditInteractiveOverlayEventArgs()¶
Constructor of ControlPointSelectingEditInteractiveOverlayEventArgs class.
public ControlPointSelectingEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
ControlPointSelectingEditInteractiveOverlayEventArgs(Boolean, PointShape)¶
Constructor of ControlPointSelectingEditInteractiveOverlayEventArgs class.
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.