Provides access to members that return information about changed values and the original value in a row.
Members
Name | 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. |
IRowChanges.OriginalValue Property
The value of the field at the specified index immediately after the last call to Store on the Row object.
Public Function get_OriginalValue ( _
ByVal Index As Integer _
) As Object
public object get_OriginalValue (
int Index
);
IRowChanges.ValueChanged Property
Indicates whether the value of the field at the specified index has changed since the last call to Store on the Row object.
Public Function get_ValueChanged ( _
ByVal Index As Integer _
) As Boolean
public bool get_ValueChanged (
int Index
);
Classes that implement IRowChanges
Classes | Description |
---|---|
Feature | Esri Feature. |
Remarks
The IRowChangesinterface allows clients of a row object to determine the values that were changed for the row object within a Storecycle. Once the Storemethod 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 OnChangedor OnNewimplementation and also by a related object in its implementation of the RelatedObjectChangedmethod.
The ValueChangedmethod returns true if the value for the specified field was changed since the last call to Storeon the row object.
The OriginalValuemethod 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 Storeon the row object.