Table of Contents

Class FeatureEditedEditInteractiveOverlayEventArgs

Namespace
ThinkGeo.Core
Assembly
ThinkGeo.Core.dll

Provides data for the FeatureEdited event.

public class FeatureEditedEditInteractiveOverlayEventArgs : EventArgs
Inheritance
FeatureEditedEditInteractiveOverlayEventArgs
Inherited Members

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.

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