Provides access to events that happen when a feature is split or merged.
Members
Name | Description | |
---|---|---|
InitShape | Initialize the shape. | |
OnMerge | An after event that is fired when Features have been merged, on each deleted input Feature. | |
OnSplit | An after event that is fired when a Feature is split, on the deleted input Feature. |
IFeatureEvents.InitShape Method
Initialize the shape.
Public Sub InitShape ( _
)
public void InitShape (
);
IFeatureEvents.OnMerge Method
An after event that is fired when Features have been merged, on each deleted input Feature.
Public Sub OnMerge ( _
)
public void OnMerge (
);
IFeatureEvents.OnSplit Method
An after event that is fired when a Feature is split, on the deleted input Feature.
Public Sub OnSplit ( _
)
public void OnSplit (
);
Classes that implement IFeatureEvents
Classes | Description |
---|---|
Feature | Esri Feature. |
Remarks
IFeatureEventsinterface is only relevant to custom features. For simple features, these methods are triggered by the geodatabase, but no action is taken. If you create a custom feature, you may choose to re-implement IFeatureEventsto achieve certain functionality. IRowEventscomplements this interface.
InitShape and OnMerge are deprecated and should not define any functionality.