|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface IRowEvents
Provides access to events that occur when an object is modified, created or deleted.
The IRowEvents interface allows implementers of custom row objects to take special action in response to changes made to the state of a row object. The geodatabase calls the methods in the IRowEvents interface as changes are made to the state of a row object (see the description of the IRow::Store and IRow::Delete methods).
The OnChanged method is called by the geodatabase when an application program calls Store on an existing Row object.
The OnNew method is called by the geodatabase when an application program calls Store on a newly created Row object.
The OnDelete method is called by the geodatabase when an application program calls Delete on a Row object.
The OnInitialize method is called by the geodatabase after hydrating a cocreated Row object with its state (its set of field values) but before handing the Row to an application program. This is an opportunity for the Row object to initialize further state and derived member variables.
The OnValidate method is unused (deprecated).
| Method Summary | |
|---|---|
void |
onChanged(IRowEventsOnChangedEvent theEvent)
An after event that is fired when a custom object is changed. |
void |
onDelete(IRowEventsOnDeleteEvent theEvent)
An after event that is fired when a custom object is deleted. |
void |
onInitialize(IRowEventsOnInitializeEvent theEvent)
An after event that is fired when a custom object is initialized. |
void |
onNew(IRowEventsOnNewEvent theEvent)
An after event that is fired when a custom object is Stored for the first time. |
void |
onValidate(IRowEventsOnValidateEvent theEvent)
An after event that is fired when a custom object is validated. |
| Method Detail |
|---|
void onChanged(IRowEventsOnChangedEvent theEvent)
throws IOException,
AutomationException
The OnChanged method is called by the geodatabase when an application program calls Store on an existing Row object.
theEvent - The event
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void onDelete(IRowEventsOnDeleteEvent theEvent)
throws IOException,
AutomationException
The OnDelete method is called by the geodatabase when an application program calls Delete on a Row object.
theEvent - The event
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void onInitialize(IRowEventsOnInitializeEvent theEvent)
throws IOException,
AutomationException
The OnInitialize method is called by the geodatabase after hydrating a cocreated Row object with its state (its set of field values) but before handing the Row to an application program. This is an opportunity for the Row object to initialize further state and derived member variables.
theEvent - The event
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void onNew(IRowEventsOnNewEvent theEvent)
throws IOException,
AutomationException
The OnNew method is called by the geodatabase when an application program calls Store on a newly created Row object.
theEvent - The event
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
void onValidate(IRowEventsOnValidateEvent theEvent)
throws IOException,
AutomationException
theEvent - The event
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||