This document is archived and information here might be outdated.  Recommended version.


IDataChangesEx.ChangedIDs Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > ID > IDataChangesEx Interface > IDataChangesEx.ChangedIDs Property
ArcGIS Developer Help

IDataChangesEx.ChangedIDs Property

The IDs of rows that changed during the edit session.

[Visual Basic .NET]
Public Function get_ChangedIDs ( _
    ByVal ClassName As String, _
    ByVal DiffType As esriDifferenceType _
) As IFIDSet
[C#]
public IFIDSet get_ChangedIDs (
    string ClassName,
    esriDifferenceType DiffType
);
[C++]
HRESULT get_ChangedIDs(
  BSTR ClassName,
  esriDifferenceType DiffType,
  IFIDSet** FIDSet
);
[C++]
Parameters
ClassName [in]

ClassName is a parameter of type BSTR DiffType [in]
DiffType is a parameter of type esriDifferenceType FIDSet [out, retval]
FIDSet is a parameter of type IFIDSet**

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

This property can be used to populate a set of feature identifiers. This can then be used to get all the rows that have been changed which correspond to a specific difference. By specifying the DiffType as an argument one can affect which feature identifiers will be present in the set.

See Also

IDataChangesEx Interface