Class FeatureRotatingEditInteractiveOverlayEventArgs
Provides data for the
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
FeatureThis parameter specified the target feature to be rotated.
cancel
boolThis parameter specified the cancel property.
sourceControlPoint
PointShapeThis parameter specified the source control point to be roated.
targetControlPoint
PointShapeThis 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
RotatingFeature
Gets or sets the Feature to be roated.
public Feature RotatingFeature { get; set; }
Property Value
SourceControlPoint
Gets or sets the source control point to roate.
public PointShape SourceControlPoint { get; set; }
Property Value
TargetControlPoint
Gets or sets the target control point to roate.
public PointShape TargetControlPoint { get; set; }