IObjectClassEvents Interface

Provides access to events that occur with an object class.

When To Use

IObjectClassEvents is an optional interface for class extensions, as well as an event interface for object classes. Both techniques allow the capture of events that occur in the object class, such as object creation, modification and deletion.

Implementing IObjectClassEvents****allows for the building of ClassExtensions which is an ideal way to extend the default geodatabase behavior. This type of extension can be used when you don't want to rely on catching IEditEvents such as OnCreateFeature, OnChangeFeature or OnDeleteFeature. This is handy when you need to implement a geodatabase-level customization that will not be application specific, i.e. dependent upon ArcMap and the Editor extension.

Any custom object can listen to the IObjectClassEvents event interface.

Members

Name Description
Method OnChange This event is fired when an object's attributes or geometry is updated.
Method OnCreate This event is fired when a new object is created in the object class.
Method OnDelete This event is fired when an object is deleted from the object class.

IObjectClassEvents.OnChange Event

This event is fired when an object's attributes or geometry is updated.

Public Event OnChange As OnChangeEventHandler
public event OnChangeEventHandler OnChange

Remarks

In the event that a feature should be deleted due to an OnChange event, it is not recommended that the event handler delete the feature itself. Instead, an exception should be thrown to the application, where it can be made responsible for deleting the feature.

The OnChange event is not fired during a Topology Validation for performance reasons as a large number of features may be changed during a Validate. In addition, features may be changed many times.

IObjectClassEvents.OnCreate Event

This event is fired when a new object is created in the object class.

Public Event OnCreate As OnCreateEventHandler
public event OnCreateEventHandler OnCreate

IObjectClassEvents.OnDelete Event

This event is fired when an object is deleted from the object class.

Public Event OnDelete As OnDeleteEventHandler
public event OnDeleteEventHandler OnDelete

Classes that implement IObjectClassEvents

Classes Description
ObjectClassEvents Helper coclass for working with the outbound interface on noncreatable object classes in VB.
RelQueryTable An object that joins two datasets based on common data values.
XYEventSource XY event source object.

Remarks

Listeners of the OnCreate event are not necessarily notified every time an object is created. The event is triggered following a call to IRow.Store, and by default this does not occur when objects or simple features are created using an insert cursor. This can be overridden by setting the IWorkspaceEditControl.SetStoreEventsRequired property to true, or by implementing the optional IObjectClassInfo interface on the class' extension.

If you are using the OnCreate, OnDelete or OnChange methods in a class extension to validate edit operations, you should not call AbortEditOperation on the workspace if your logic indicates that the edit operation is invalid. Instead, raise an error which will be propagated to the application that is performing the edit on the class.

It is the responsibility of the editing application that receives the error to abort the edit operation. This is especially true when editing with ArcMap. If you call AbortEditOperation from within the class extension, the ArcMap undo/redo edit stack will become out of sync.

In the event that a feature should be deleted due to an OnChange event, it is not recommended that the event handler delete the feature itself. Instead, an exception should be thrown to the application, where it can be made responsible for deleting the feature.

The OnCreate, OnDelete or OnChange events are not fired during a Topology Validation. The OnCreate and OnDelete events are not applicable since a Validate does not create or delete features. The OnChange event is not fired for performance as a large number of features may be changed during a Validate. In addition, features may be changed many times.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.