Skip to content

FeatureRotatingEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the FeatureRotating. event.

public class FeatureRotatingEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsFeatureRotatingEditInteractiveOverlayEventArgs

Properties

RotatingFeature

Gets or sets the Feature to be roated.

public Feature RotatingFeature { get; set; }

Property Value

Feature

SourceControlPoint

Gets or sets the source control point to roate.

public PointShape SourceControlPoint { get; set; }

Property Value

PointShape

TargetControlPoint

Gets or sets the target control point to roate.

public PointShape TargetControlPoint { get; set; }

Property Value

PointShape

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

Boolean

Constructors

FeatureRotatingEditInteractiveOverlayEventArgs()

Constructor of FeatureRotatingEditInteractiveOverlayEventArgs class.

public FeatureRotatingEditInteractiveOverlayEventArgs()

Remarks:

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

FeatureRotatingEditInteractiveOverlayEventArgs(Feature, Boolean, PointShape, PointShape)

Constructor of FeatureRotatingEditInteractiveOverlayEventArgs class.

public FeatureRotatingEditInteractiveOverlayEventArgs(Feature rotatingFeature, bool cancel, PointShape sourceControlPoint, PointShape targetControlPoint)

Parameters

rotatingFeature Feature
This parameter specified the target feature to be rotated.

cancel Boolean
This parameter specified the cancel property.

sourceControlPoint PointShape
This parameter specified the source control point to be roated.

targetControlPoint PointShape
This parameter specified the target control point to be roated.