Table of Contents

Class FeatureRotatingEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the FeatureRotating. event.

public class FeatureRotatingEditInteractiveOverlayEventArgs : EventArgs
Inheritance
FeatureRotatingEditInteractiveOverlayEventArgs
Inherited Members

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, bool, 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 bool

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.

Properties

Cancel

Gets or sets the action to be canceled or not.

public bool Cancel { get; set; }

Property Value

bool

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