Provides access to members that return information about changed values and the original value in a row.
Product Availability
Members
Description | ||
---|---|---|
OriginalValue | The value of the field at the specified index immediately after the last call to Store on the Row object. | |
ValueChanged | Indicates whether the value of the field at the specified index has changed since the last call to Store on the Row object. |
CoClasses that implement IRowChanges
CoClasses and Classes | Description |
---|---|
AnnotationFeature (esriCarto) | An ESRI annotation feature. |
AttributedRelationship | ESRI Attributed Relationship object. |
ComplexEdgeFeature | ESRI Complex edge geometric network feature object. |
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 a feature or a row. |
NALocationObject (esriNetworkAnalyst) | A network location which can be used like a row. |
NALocationRangesFeature (esriNetworkAnalyst) | A container of NALocationRanges which can be used like a feature or a row. |
NALocationRangesObject (esriNetworkAnalyst) | A container of NALocationRanges which can be used like a row. |
NATraversalResultElement (esriNetworkAnalyst) | An individual element in a traversal result. |
Object | ESRI Object object. |
RasterCatalogItem | Raster Catalog Feature Class. |
Row | ESRI Row object. |
SchematicDiagram (esriSchematic) | A schematic diagram object. |
SchematicInMemoryFeatureLink (esriSchematic) | Schematic in memory feature link object. |
SchematicInMemoryFeatureNode (esriSchematic) | Schematic in memory feature node object. |
SchematicInMemoryFeatureNodeOnLink (esriSchematic) | Schematic in memory feature node on link object. |
SchematicInMemoryFeatureSubLink (esriSchematic) | Schematic in memory feature sublink object. |
SchematicLink (esriSchematic) | A schematic link object. |
SchematicNode (esriSchematic) | A schematic node object. |
SchematicNodeOnLink (esriSchematic) | A schematic node-on-link object. |
SchematicSubLink (esriSchematic) | A schematic sublink object. |
SimpleEdgeFeature | ESRI Geometric network simple edge feature object. |
SimpleJunctionFeature | ESRI Geometric network simple junction feature object. |
TemporalFeature (esriTrackingAnalyst) | Controls properties of the Temporal Feature object. |
TopologyErrorFeature | ESRI Topology Error Feature object. |
Remarks
The IRowChanges interface allows clients of a row object to determine the values that were changed for the row object within a Store cycle. Once the Store method call returns to the calling application program, the information regarding the values that were changed is cleared and is no longer available. This information may be made use of by a custom object in its OnChanged or OnNew implementation and also by a related object in its implementation of the RelatedObjectChanged method.
The ValueChanged method returns true if the value for the specified field was changed since the last call to Store on the row object.
The OriginalValue method returns the value for the specified field as it existed prior to the first update made to the row object since the last call to Store on the row object.