Skip to content

FeatureRotatingEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.UI.Android

Provides data for the FeatureRotating. event.

public class FeatureRotatingEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsFeatureRotatingEditInteractiveOverlayEventArgs

Properties

RotatingFeature

This property gets or sets the Feature to be used to roated.

public Feature RotatingFeature { get; set; }

Property Value

Feature

SourceControlPoint

This property gets or sets the source control point to roate.

public PointShape SourceControlPoint { get; set; }

Property Value

PointShape

TargetControlPoint

This property gets or sets the target control point to roate.

public PointShape TargetControlPoint { 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

FeatureRotatingEditInteractiveOverlayEventArgs()

This is the default constructor of this parameter.

public FeatureRotatingEditInteractiveOverlayEventArgs()

Remarks:

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

FeatureRotatingEditInteractiveOverlayEventArgs(Feature, Boolean, PointShape, PointShape)

This is the commonly used constructor.

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.