Skip to content

FeatureEditedEditInteractiveOverlayEventArgs

Namespace: ThinkGeo.Core

Provides data for the FeatureEdited event.

public class FeatureEditedEditInteractiveOverlayEventArgs : System.EventArgs

Inheritance ObjectEventArgsFeatureEditedEditInteractiveOverlayEventArgs

Properties

EditedFeature

Gets or sets the Feature dragged.

public Feature EditedFeature { get; set; }

Property Value

Feature

LastEditedFeature

Gets Last Edited Feature, which is the feature before doing this round of editing

public Feature LastEditedFeature { get; }

Property Value

Feature

Constructors

FeatureEditedEditInteractiveOverlayEventArgs()

Constructor of FeatureDraggedEditInteractiveOverlayEventArgs class.

public FeatureEditedEditInteractiveOverlayEventArgs()

Remarks:

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

FeatureEditedEditInteractiveOverlayEventArgs(Feature, Feature)

Constructor of FeatureDraggedEditInteractiveOverlayEventArgs class.

public FeatureEditedEditInteractiveOverlayEventArgs(Feature lastEditedFeature, Feature editedFeature)

Parameters

lastEditedFeature Feature
This parameter specified the feature before editing.

editedFeature Feature
This parameter specified the feature before this round of editing.