Table of Contents

Class FeatureDraggingEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the FeatureDragging. event.

public class FeatureDraggingEditInteractiveOverlayEventArgs : EventArgs
Inheritance
FeatureDraggingEditInteractiveOverlayEventArgs
Inherited Members

Constructors

FeatureDraggingEditInteractiveOverlayEventArgs()

Constructor of FeatureDraggingEditInteractiveOverlayEventArgs class.

public FeatureDraggingEditInteractiveOverlayEventArgs()

Remarks

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

FeatureDraggingEditInteractiveOverlayEventArgs(Feature, bool, PointShape, PointShape)

Constructor of FeatureDraggingEditInteractiveOverlayEventArgs class.

public FeatureDraggingEditInteractiveOverlayEventArgs(Feature draggingFeature, bool cancel, PointShape sourceControlPoint, PointShape targetControlPoint)

Parameters

draggingFeature Feature

This parameter specified the target feature to be dragged.

cancel bool

This parameter specified the cancel property.

sourceControlPoint PointShape

This parameter specified the source control point to be dragged.

targetControlPoint PointShape

This parameter specified the target control point to be dragged.

Properties

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

bool

DraggingFeature

Gets or sets the Feature to be dragged.

public Feature DraggingFeature { get; set; }

Property Value

Feature

SourceControlPoint

Gets or sets the source control point to drag.

public PointShape SourceControlPoint { get; set; }

Property Value

PointShape

TargetControlPoint

Gets or sets the target control point to drag.

public PointShape TargetControlPoint { get; set; }

Property Value

PointShape