Provides access to events that occur when an object is modified, created or deleted.
| Description | ||
|---|---|---|
![]() |
OnChanged | An after event that is fired when a custom object is changed. |
![]() |
OnDelete | An after event that is fired when a custom object is deleted. |
![]() |
OnInitialize | An after event that is fired when a custom object is initialized. |
![]() |
OnNew | An after event that is fired when a custom object is Stored for the first time. |
![]() |
OnValidate | An after event that is fired when a custom object is validated. |
| CoClasses and Classes | Description |
|---|---|
| AnnotationFeature (esriCarto) | An ESRI annotation feature. |
| AttributedRelationship | ESRI Attributed Relationship. |
| ComplexEdgeFeature | ESRI Complex edge geometric network feature. |
| ComplexJunctionFeature | ESRI Complex junction geometric network feature. |
| CoverageAnnotationFeature | ESRI Coverage Annotation Feature. |
| DimensionFeature (esriCarto) | ESRI Dimension Feature class. |
| Feature | ESRI Feature. |
| GeocodedFeature (esriLocation) | A feature created by a locator. |
| NALocationFeature (esriNetworkAnalyst) | A network location which can be used like feature a row. |
| NALocationObject (esriNetworkAnalyst) | A network location which can be used like a row. |
| NATraversalResultElement (esriNetworkAnalyst) | An individual element in a traversal result. |
| Object | ESRI Object. |
| RasterCatalogItem | Raster Catalog Feature Class. |
| Row | ESRI Row. |
| SchematicDiagram (esriSchematic) | Schematic diagram object. |
| SchematicDrawing (esriSchematic) | Schematic drawing object. |
| SchematicLink (esriSchematic) | Schematic link object. |
| SchematicNode (esriSchematic) | Schematic node object. |
| SchematicNodeOnLink (esriSchematic) | Schematic node-on-link object. |
| SchematicSubLink (esriSchematic) | Schematic sublink object. |
| SimpleEdgeFeature | ESRI Geometric network edge feature. |
| SimpleJunctionFeature | ESRI Geometric network simple junction feature. |
| TemporalFeature (esriTrackingAnalyst) | Controls properties of the Temporal Feature object. |
| TopologyErrorFeature | ESRI Topology Error Feature. |
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).