Class FeatureResizingEditInteractiveOverlayEventArgs
Provides data for the
public class FeatureResizingEditInteractiveOverlayEventArgs : EventArgs
- Inheritance
-
FeatureResizingEditInteractiveOverlayEventArgs
- Inherited Members
Constructors
FeatureResizingEditInteractiveOverlayEventArgs()
Constructor of FeatureResizingEditInteractiveOverlayEventArgs class.
public FeatureResizingEditInteractiveOverlayEventArgs()
Remarks
If you use this constructor, you have to set the properties manually before use.
FeatureResizingEditInteractiveOverlayEventArgs(Feature, bool, PointShape, PointShape)
Constructor of FeatureResizingEditInteractiveOverlayEventArgs class.
public FeatureResizingEditInteractiveOverlayEventArgs(Feature resizingFeature, bool cancel, PointShape sourceControlPoint, PointShape targetControlPoint)
Parameters
resizingFeature
FeatureThis parameter specified the target feature to be resized.
cancel
boolThis parameter specified the cancel property.
sourceControlPoint
PointShapeThis parameter specified the source control point to be resized.
targetControlPoint
PointShapeThis parameter specified the target control point to be resized.
Properties
Cancel
Gets or sets the action to be canceled or not.
public bool Cancel { get; set; }
Property Value
ResizingFeature
Gets or sets the Feature to be resized.
public Feature ResizingFeature { get; set; }
Property Value
SourceControlPoint
Gets or sets the source control point to be resized.
public PointShape SourceControlPoint { get; set; }
Property Value
TargetControlPoint
Gets or sets the target control point to be resized.
public PointShape TargetControlPoint { get; set; }