FeatureResizingEditInteractiveOverlayEventArgs¶
Namespace: ThinkGeo.UI.Android
Provides data for the FeatureResizing. event.
public class FeatureResizingEditInteractiveOverlayEventArgs : System.EventArgs
Inheritance Object → EventArgs → FeatureResizingEditInteractiveOverlayEventArgs
Properties¶
ResizingFeature¶
This property gets or sets the Feature to be used to resized.
public Feature ResizingFeature { get; set; }
Property Value¶
Feature
SourceControlPoint¶
This property gets or sets the source control point to resize.
public PointShape SourceControlPoint { get; set; }
Property Value¶
PointShape
TargetControlPoint¶
This property gets or sets the target control point to resize.
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¶
Constructors¶
FeatureResizingEditInteractiveOverlayEventArgs()¶
This is the default constructor of this parameter.
public FeatureResizingEditInteractiveOverlayEventArgs()
Remarks:
If you use this constructor, you have to set the properties manually before use.
FeatureResizingEditInteractiveOverlayEventArgs(Feature, Boolean, PointShape, PointShape)¶
This is the commonly used constructor.
public FeatureResizingEditInteractiveOverlayEventArgs(Feature resizingFeature, bool cancel, PointShape sourceControlPoint, PointShape targetControlPoint)
Parameters¶
resizingFeature
Feature
This parameter specified the target feature to be resized.
cancel
Boolean
This parameter specified the cancel property.
sourceControlPoint
PointShape
This parameter specified the source control point to be resized.
targetControlPoint
PointShape
This parameter specified the target control point to be resized.